@idlizer/arktscgen 2.1.9-arktscgen-9 → 2.1.10-arktscgen-2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/libarkts-copy/generator/options.json5 +115 -3
- package/build/libarkts-copy/native/mingw.cross +13 -0
- package/build/libarkts-copy/native/src/bridges.cc +58 -227
- package/build/libarkts-copy/native/src/common.cc +49 -8
- package/build/libarkts-copy/native/src/generated/bridges.cc +1641 -44
- package/build/libarkts-copy/package.json +11 -14
- package/build/libarkts-copy/src/Es2pandaNativeModule.ts +28 -51
- package/build/libarkts-copy/src/arkts-api/ImportStorage.ts +1 -1
- package/build/libarkts-copy/src/arkts-api/class-by-peer.ts +6 -5
- package/build/libarkts-copy/src/arkts-api/factory/nodeFactory.ts +5 -2
- package/build/libarkts-copy/src/arkts-api/node-cache.ts +4 -0
- package/build/libarkts-copy/src/arkts-api/node-utilities/ArkTsConfig.ts +7 -6
- package/build/libarkts-copy/src/arkts-api/node-utilities/NumberLiteral.ts +3 -1
- package/build/libarkts-copy/src/arkts-api/node-utilities/ObjectExpression.ts +25 -6
- package/build/libarkts-copy/src/{wrapper-compat/arkts-api/peers/ImportPathManager.ts → arkts-api/node-utilities/OpaqueTypeNode.ts} +8 -17
- package/build/libarkts-copy/src/arkts-api/node-utilities/Program.ts +11 -10
- package/build/libarkts-copy/src/arkts-api/peers/AstNode.ts +8 -6
- package/build/libarkts-copy/src/arkts-api/peers/Config.ts +6 -0
- package/build/libarkts-copy/src/arkts-api/peers/Context.ts +3 -15
- package/build/libarkts-copy/src/arkts-api/static/global.ts +28 -1
- package/build/libarkts-copy/src/arkts-api/utilities/extensions.ts +46 -6
- package/build/libarkts-copy/src/arkts-api/utilities/private.ts +3 -3
- package/build/libarkts-copy/src/arkts-api/utilities/public.ts +58 -90
- package/build/libarkts-copy/src/arkts-api/visitor.ts +965 -365
- package/build/libarkts-copy/src/generated/Es2pandaEnums.ts +5 -0
- package/build/libarkts-copy/src/generated/Es2pandaNativeModule.ts +601 -13
- package/build/libarkts-copy/src/generated/index.ts +3 -2
- package/build/libarkts-copy/src/generated/peers/AnnotatedAstNode.ts +3 -2
- package/build/libarkts-copy/src/generated/peers/AnnotatedExpression.ts +3 -2
- package/build/libarkts-copy/src/generated/peers/AnnotatedStatement.ts +3 -2
- package/build/libarkts-copy/src/generated/peers/AnnotationDeclaration.ts +6 -7
- package/build/libarkts-copy/src/generated/peers/AnnotationUsage.ts +6 -7
- package/build/libarkts-copy/src/generated/peers/ArkTsConfig.ts +4 -0
- package/build/libarkts-copy/src/generated/peers/ArrayExpression.ts +6 -7
- package/build/libarkts-copy/src/generated/peers/ArrowFunctionExpression.ts +6 -7
- package/build/libarkts-copy/src/generated/peers/AssertStatement.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/AssignmentExpression.ts +6 -7
- package/build/libarkts-copy/src/generated/peers/AstDumper.ts +3 -0
- package/build/libarkts-copy/src/generated/peers/AwaitExpression.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/BigIntLiteral.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/BinaryExpression.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/BlockExpression.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/BlockStatement.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/BooleanLiteral.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/BreakStatement.ts +6 -7
- package/build/libarkts-copy/src/generated/peers/CallExpression.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/CatchClause.ts +6 -7
- package/build/libarkts-copy/src/generated/peers/ChainExpression.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/CharLiteral.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ClassDeclaration.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ClassDefinition.ts +9 -8
- package/build/libarkts-copy/src/generated/peers/ClassElement.ts +3 -2
- package/build/libarkts-copy/src/generated/peers/ClassExpression.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ClassProperty.ts +15 -8
- package/build/libarkts-copy/src/generated/peers/ClassStaticBlock.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ConditionalExpression.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ContinueStatement.ts +6 -7
- package/build/libarkts-copy/src/generated/peers/DebuggerStatement.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/Decorator.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/DirectEvalExpression.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/DoWhileStatement.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ETSClassLiteral.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ETSFunctionType.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ETSImportDeclaration.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ETSIntrinsicNode.ts +7 -8
- package/build/libarkts-copy/src/generated/peers/ETSKeyofType.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ETSModule.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ETSNewArrayInstanceExpression.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ETSNewClassInstanceExpression.ts +6 -7
- package/build/libarkts-copy/src/generated/peers/ETSNewMultiDimArrayInstanceExpression.ts +6 -7
- package/build/libarkts-copy/src/generated/peers/ETSNullType.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ETSPackageDeclaration.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ETSParameterExpression.ts +7 -8
- package/build/libarkts-copy/src/generated/peers/ETSPrimitiveType.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ETSReExportDeclaration.ts +3 -4
- package/build/libarkts-copy/src/generated/peers/ETSStringLiteralType.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ETSStructDeclaration.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ETSTuple.ts +9 -10
- package/build/libarkts-copy/src/generated/peers/ETSTypeReference.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ETSTypeReferencePart.ts +6 -7
- package/build/libarkts-copy/src/generated/peers/ETSUndefinedType.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ETSUnionType.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ETSWildcardType.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/EmptyStatement.ts +6 -7
- package/build/libarkts-copy/src/generated/peers/ExportAllDeclaration.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ExportDefaultDeclaration.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ExportNamedDeclaration.ts +9 -10
- package/build/libarkts-copy/src/generated/peers/ExportSpecifier.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/Expression.ts +7 -2
- package/build/libarkts-copy/src/generated/peers/ExpressionStatement.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ForInStatement.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ForOfStatement.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ForUpdateStatement.ts +4 -5
- package/build/libarkts-copy/src/generated/peers/FunctionDeclaration.ts +6 -7
- package/build/libarkts-copy/src/generated/peers/FunctionExpression.ts +6 -7
- package/build/libarkts-copy/src/generated/peers/FunctionSignature.ts +3 -0
- package/build/libarkts-copy/src/generated/peers/Identifier.ts +7 -8
- package/build/libarkts-copy/src/generated/peers/IfStatement.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ImportDeclaration.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ImportDefaultSpecifier.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ImportExpression.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ImportNamespaceSpecifier.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ImportSpecifier.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/LabelledStatement.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/Literal.ts +3 -2
- package/build/libarkts-copy/src/generated/peers/LoopStatement.ts +3 -2
- package/build/libarkts-copy/src/generated/peers/MaybeOptionalExpression.ts +3 -2
- package/build/libarkts-copy/src/generated/peers/MemberExpression.ts +5 -10
- package/build/libarkts-copy/src/generated/peers/MetaProperty.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/MethodDefinition.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/NamedType.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/NewExpression.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/NullLiteral.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/NumberLiteral.ts +10 -9
- package/build/libarkts-copy/src/generated/peers/ObjectExpression.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/OmittedExpression.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/OpaqueTypeNode.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/OverloadDeclaration.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/PrefixAssertionExpression.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/Property.ts +6 -7
- package/build/libarkts-copy/src/generated/peers/RegExpLiteral.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ReturnStatement.ts +6 -7
- package/build/libarkts-copy/src/generated/peers/ScriptFunction.ts +7 -6
- package/build/libarkts-copy/src/generated/peers/SequenceExpression.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/SourcePosition.ts +6 -0
- package/build/libarkts-copy/src/generated/peers/SpreadElement.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/SrcDumper.ts +3 -0
- package/build/libarkts-copy/src/generated/peers/Statement.ts +3 -2
- package/build/libarkts-copy/src/generated/peers/StringLiteral.ts +6 -7
- package/build/libarkts-copy/src/generated/peers/SuperExpression.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/SwitchCaseStatement.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/SwitchStatement.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSAnyKeyword.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSArrayType.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSAsExpression.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSBigintKeyword.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSBooleanKeyword.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSClassImplements.ts +6 -7
- package/build/libarkts-copy/src/generated/peers/TSConditionalType.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSConstructorType.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSEnumDeclaration.ts +6 -7
- package/build/libarkts-copy/src/generated/peers/TSEnumMember.ts +6 -7
- package/build/libarkts-copy/src/generated/peers/TSExternalModuleReference.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSFunctionType.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSImportEqualsDeclaration.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSImportType.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSIndexSignature.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSIndexedAccessType.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSInferType.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSInterfaceBody.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSInterfaceDeclaration.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSInterfaceHeritage.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSIntersectionType.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSLiteralType.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSMappedType.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSMethodSignature.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSModuleBlock.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSModuleDeclaration.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSNamedTupleMember.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSNeverKeyword.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSNonNullExpression.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSNullKeyword.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSNumberKeyword.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSObjectKeyword.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSParameterProperty.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSParenthesizedType.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSPropertySignature.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSQualifiedName.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSSignatureDeclaration.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSStringKeyword.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSThisType.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSTupleType.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSTypeAliasDeclaration.ts +6 -7
- package/build/libarkts-copy/src/generated/peers/TSTypeAssertion.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSTypeLiteral.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSTypeOperator.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSTypeParameter.ts +6 -7
- package/build/libarkts-copy/src/generated/peers/TSTypeParameterDeclaration.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSTypeParameterInstantiation.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSTypePredicate.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSTypeQuery.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSTypeReference.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSUndefinedKeyword.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSUnionType.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSUnknownKeyword.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TSVoidKeyword.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TaggedTemplateExpression.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TemplateElement.ts +6 -7
- package/build/libarkts-copy/src/generated/peers/TemplateLiteral.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ThisExpression.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ThrowStatement.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/TryStatement.ts +6 -7
- package/build/libarkts-copy/src/generated/peers/TypeNode.ts +3 -2
- package/build/libarkts-copy/src/generated/peers/TypedAstNode.ts +3 -2
- package/build/libarkts-copy/src/generated/peers/TypedStatement.ts +3 -2
- package/build/libarkts-copy/src/generated/peers/TypeofExpression.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/UnaryExpression.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/UndefinedLiteral.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/UpdateExpression.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/ValidationInfo.ts +3 -0
- package/build/libarkts-copy/src/generated/peers/VariableDeclaration.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/VariableDeclarator.ts +6 -7
- package/build/libarkts-copy/src/generated/peers/WhileStatement.ts +5 -6
- package/build/libarkts-copy/src/generated/peers/YieldExpression.ts +5 -6
- package/build/libarkts-copy/src/index.ts +2 -0
- package/build/libarkts-copy/src/plugin-utils.ts +8 -1
- package/build/libarkts-copy/src/reexport-for-generated.ts +8 -0
- package/build/libarkts-copy/src/tracer.ts +172 -0
- package/lib/index.js +1357 -510
- package/package.json +2 -2
- package/build/libarkts-copy/src/arkts-api/peers/SourcePosition.ts +0 -38
- package/build/libarkts-copy/src/generated/peers/FunctionDecl.ts +0 -45
- package/build/libarkts-copy/src/generated/peers/InterfaceDecl.ts +0 -45
- package/build/libarkts-copy/src/wrapper-compat/README.md +0 -20
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/class-by-peer.ts +0 -46
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/factory/nodeFactory.ts +0 -454
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/factory/nodeTests.ts +0 -99
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/index.ts +0 -88
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/ArrayExpression.ts +0 -38
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/ArrowFunctionExpression.ts +0 -35
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/AssignmentExpression.ts +0 -38
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/BlockStatement.ts +0 -27
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/CallExpression.ts +0 -45
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/ClassDeclaration.ts +0 -27
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/ClassDefinition.ts +0 -73
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/ClassProperty.ts +0 -51
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/ETSFunctionType.ts +0 -42
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/ETSImportDeclaration.ts +0 -39
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/ETSParameterExpression.ts +0 -43
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/ExpressionStatement.ts +0 -28
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/FunctionDeclaration.ts +0 -37
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/FunctionExpression.ts +0 -28
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/IfStatement.ts +0 -37
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/MemberExpression.ts +0 -42
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/MethodDefinition.ts +0 -46
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/NumberLiteral.ts +0 -30
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/ObjectExpression.ts +0 -37
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/Property.ts +0 -27
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/ScriptFunction.ts +0 -46
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/StructDeclaration.ts +0 -28
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/TSInterfaceDeclaration.ts +0 -47
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/TSTypeAliasDeclaration.ts +0 -40
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/TSTypeParameter.ts +0 -36
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/TryStatement.ts +0 -41
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/VariableDeclaration.ts +0 -42
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/VariableDeclarator.ts +0 -39
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/peers/AstNode.ts +0 -26
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/peers/Diagnostic.ts +0 -38
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/peers/DiagnosticInfo.ts +0 -34
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/peers/DiagnosticKind.ts +0 -33
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/peers/Program.ts +0 -105
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/peers/SourcePosition.ts +0 -38
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/peers/SourceRange.ts +0 -38
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/peers/SuggestionInfo.ts +0 -34
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/static/global.ts +0 -16
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/to-be-generated/MemberExpression.ts +0 -108
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/types.ts +0 -889
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/utilities/nativePtrDecoder.ts +0 -69
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/utilities/performance.ts +0 -190
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/utilities/private.ts +0 -198
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/utilities/public.ts +0 -327
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/visitor.ts +0 -421
- package/build/libarkts-copy/src/wrapper-compat/index.ts +0 -20
|
@@ -16,10 +16,1609 @@
|
|
|
16
16
|
#include <common.h>
|
|
17
17
|
|
|
18
18
|
/*
|
|
19
|
-
* THIS FILE IS AUTOGENERATED BY arktscgen v2.1.
|
|
20
|
-
* es2panda
|
|
19
|
+
* THIS FILE IS AUTOGENERATED BY arktscgen v2.1.10+devel. DO NOT EDIT MANUALLY!
|
|
20
|
+
* es2panda 69841f0ea7d3ce9e56d52de1dd426082f56e149e(2025-08-12) sdk v1.5.0-dev.41217
|
|
21
21
|
*/
|
|
22
22
|
|
|
23
|
+
KNativePointer impl_GetAllErrorMessages(KNativePointer context)
|
|
24
|
+
{
|
|
25
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
26
|
+
auto result = GetImpl()->GetAllErrorMessages(_context);
|
|
27
|
+
return StageArena::strdup(result);
|
|
28
|
+
}
|
|
29
|
+
KOALA_INTEROP_1(GetAllErrorMessages, KNativePointer, KNativePointer);
|
|
30
|
+
|
|
31
|
+
KNativePointer impl_ProceedToState(KNativePointer context, KInt state)
|
|
32
|
+
{
|
|
33
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
34
|
+
const auto _state = static_cast<es2panda_ContextState>(state);
|
|
35
|
+
auto result = GetImpl()->ProceedToState(_context, _state);
|
|
36
|
+
return result;
|
|
37
|
+
}
|
|
38
|
+
KOALA_INTEROP_2(ProceedToState, KNativePointer, KNativePointer, KInt);
|
|
39
|
+
|
|
40
|
+
KInt impl_ContextState(KNativePointer context)
|
|
41
|
+
{
|
|
42
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
43
|
+
auto result = GetImpl()->ContextState(_context);
|
|
44
|
+
return result;
|
|
45
|
+
}
|
|
46
|
+
KOALA_INTEROP_1(ContextState, KInt, KNativePointer);
|
|
47
|
+
|
|
48
|
+
KNativePointer impl_ContextErrorMessage(KNativePointer context)
|
|
49
|
+
{
|
|
50
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
51
|
+
auto result = GetImpl()->ContextErrorMessage(_context);
|
|
52
|
+
return StageArena::strdup(result);
|
|
53
|
+
}
|
|
54
|
+
KOALA_INTEROP_1(ContextErrorMessage, KNativePointer, KNativePointer);
|
|
55
|
+
|
|
56
|
+
KNativePointer impl_ContextProgram(KNativePointer context)
|
|
57
|
+
{
|
|
58
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
59
|
+
auto result = GetImpl()->ContextProgram(_context);
|
|
60
|
+
return result;
|
|
61
|
+
}
|
|
62
|
+
KOALA_INTEROP_1(ContextProgram, KNativePointer, KNativePointer);
|
|
63
|
+
|
|
64
|
+
KNativePointer impl_CreateSourcePosition(KNativePointer context, KUInt index, KUInt line)
|
|
65
|
+
{
|
|
66
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
67
|
+
const auto _index = static_cast<KUInt>(index);
|
|
68
|
+
const auto _line = static_cast<KUInt>(line);
|
|
69
|
+
auto result = GetImpl()->CreateSourcePosition(_context, _index, _line);
|
|
70
|
+
return result;
|
|
71
|
+
}
|
|
72
|
+
KOALA_INTEROP_3(CreateSourcePosition, KNativePointer, KNativePointer, KUInt, KUInt);
|
|
73
|
+
|
|
74
|
+
KNativePointer impl_CreateSourceRange(KNativePointer context, KNativePointer start, KNativePointer end)
|
|
75
|
+
{
|
|
76
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
77
|
+
const auto _start = reinterpret_cast<es2panda_SourcePosition*>(start);
|
|
78
|
+
const auto _end = reinterpret_cast<es2panda_SourcePosition*>(end);
|
|
79
|
+
auto result = GetImpl()->CreateSourceRange(_context, _start, _end);
|
|
80
|
+
return result;
|
|
81
|
+
}
|
|
82
|
+
KOALA_INTEROP_3(CreateSourceRange, KNativePointer, KNativePointer, KNativePointer, KNativePointer);
|
|
83
|
+
|
|
84
|
+
KUInt impl_SourcePositionIndex(KNativePointer context, KNativePointer position)
|
|
85
|
+
{
|
|
86
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
87
|
+
const auto _position = reinterpret_cast<es2panda_SourcePosition*>(position);
|
|
88
|
+
auto result = GetImpl()->SourcePositionIndex(_context, _position);
|
|
89
|
+
return result;
|
|
90
|
+
}
|
|
91
|
+
KOALA_INTEROP_2(SourcePositionIndex, KUInt, KNativePointer, KNativePointer);
|
|
92
|
+
|
|
93
|
+
KUInt impl_SourcePositionLine(KNativePointer context, KNativePointer position)
|
|
94
|
+
{
|
|
95
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
96
|
+
const auto _position = reinterpret_cast<es2panda_SourcePosition*>(position);
|
|
97
|
+
auto result = GetImpl()->SourcePositionLine(_context, _position);
|
|
98
|
+
return result;
|
|
99
|
+
}
|
|
100
|
+
KOALA_INTEROP_2(SourcePositionLine, KUInt, KNativePointer, KNativePointer);
|
|
101
|
+
|
|
102
|
+
KNativePointer impl_SourceRangeStart(KNativePointer context, KNativePointer range)
|
|
103
|
+
{
|
|
104
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
105
|
+
const auto _range = reinterpret_cast<es2panda_SourceRange*>(range);
|
|
106
|
+
auto result = GetImpl()->SourceRangeStart(_context, _range);
|
|
107
|
+
return result;
|
|
108
|
+
}
|
|
109
|
+
KOALA_INTEROP_2(SourceRangeStart, KNativePointer, KNativePointer, KNativePointer);
|
|
110
|
+
|
|
111
|
+
KNativePointer impl_SourceRangeEnd(KNativePointer context, KNativePointer range)
|
|
112
|
+
{
|
|
113
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
114
|
+
const auto _range = reinterpret_cast<es2panda_SourceRange*>(range);
|
|
115
|
+
auto result = GetImpl()->SourceRangeEnd(_context, _range);
|
|
116
|
+
return result;
|
|
117
|
+
}
|
|
118
|
+
KOALA_INTEROP_2(SourceRangeEnd, KNativePointer, KNativePointer, KNativePointer);
|
|
119
|
+
|
|
120
|
+
void impl_LogDiagnosticWithSuggestion(KNativePointer context, KNativePointer diagnosticInfo, KNativePointer suggestionInfo)
|
|
121
|
+
{
|
|
122
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
123
|
+
const auto _diagnosticInfo = reinterpret_cast<es2panda_DiagnosticInfo*>(diagnosticInfo);
|
|
124
|
+
const auto _suggestionInfo = reinterpret_cast<es2panda_SuggestionInfo*>(suggestionInfo);
|
|
125
|
+
GetImpl()->LogDiagnosticWithSuggestion(_context, _diagnosticInfo, _suggestionInfo);
|
|
126
|
+
return ;
|
|
127
|
+
}
|
|
128
|
+
KOALA_INTEROP_V3(LogDiagnosticWithSuggestion, KNativePointer, KNativePointer, KNativePointer);
|
|
129
|
+
|
|
130
|
+
KBoolean impl_IsAnyError(KNativePointer context)
|
|
131
|
+
{
|
|
132
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
133
|
+
auto result = GetImpl()->IsAnyError(_context);
|
|
134
|
+
return result;
|
|
135
|
+
}
|
|
136
|
+
KOALA_INTEROP_1(IsAnyError, KBoolean, KNativePointer);
|
|
137
|
+
|
|
138
|
+
void impl_AstNodeRecheck(KNativePointer context, KNativePointer node)
|
|
139
|
+
{
|
|
140
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
141
|
+
const auto _node = reinterpret_cast<es2panda_AstNode*>(node);
|
|
142
|
+
GetImpl()->AstNodeRecheck(_context, _node);
|
|
143
|
+
return ;
|
|
144
|
+
}
|
|
145
|
+
KOALA_INTEROP_V2(AstNodeRecheck, KNativePointer, KNativePointer);
|
|
146
|
+
|
|
147
|
+
KInt impl_Es2pandaEnumFromString(KNativePointer context, KStringPtr& str)
|
|
148
|
+
{
|
|
149
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
150
|
+
const auto _str = getStringCopy(str);
|
|
151
|
+
auto result = GetImpl()->Es2pandaEnumFromString(_context, _str);
|
|
152
|
+
return result;
|
|
153
|
+
}
|
|
154
|
+
KOALA_INTEROP_2(Es2pandaEnumFromString, KInt, KNativePointer, KStringPtr);
|
|
155
|
+
|
|
156
|
+
KNativePointer impl_Es2pandaEnumToString(KNativePointer context, KInt id)
|
|
157
|
+
{
|
|
158
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
159
|
+
const auto _id = static_cast<Es2pandaEnum>(id);
|
|
160
|
+
auto result = GetImpl()->Es2pandaEnumToString(_context, _id);
|
|
161
|
+
return StageArena::strdup(result);
|
|
162
|
+
}
|
|
163
|
+
KOALA_INTEROP_2(Es2pandaEnumToString, KNativePointer, KNativePointer, KInt);
|
|
164
|
+
|
|
165
|
+
KNativePointer impl_DeclarationFromIdentifier(KNativePointer context, KNativePointer node)
|
|
166
|
+
{
|
|
167
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
168
|
+
const auto _node = reinterpret_cast<es2panda_AstNode*>(node);
|
|
169
|
+
auto result = GetImpl()->DeclarationFromIdentifier(_context, _node);
|
|
170
|
+
return result;
|
|
171
|
+
}
|
|
172
|
+
KOALA_INTEROP_2(DeclarationFromIdentifier, KNativePointer, KNativePointer, KNativePointer);
|
|
173
|
+
|
|
174
|
+
KBoolean impl_IsImportTypeKind(KNativePointer context, KNativePointer node)
|
|
175
|
+
{
|
|
176
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
177
|
+
const auto _node = reinterpret_cast<es2panda_AstNode*>(node);
|
|
178
|
+
auto result = GetImpl()->IsImportTypeKind(_context, _node);
|
|
179
|
+
return result;
|
|
180
|
+
}
|
|
181
|
+
KOALA_INTEROP_2(IsImportTypeKind, KBoolean, KNativePointer, KNativePointer);
|
|
182
|
+
|
|
183
|
+
KNativePointer impl_JsdocStringFromDeclaration(KNativePointer context, KNativePointer node)
|
|
184
|
+
{
|
|
185
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
186
|
+
const auto _node = reinterpret_cast<es2panda_AstNode*>(node);
|
|
187
|
+
auto result = GetImpl()->JsdocStringFromDeclaration(_context, _node);
|
|
188
|
+
return StageArena::strdup(result);
|
|
189
|
+
}
|
|
190
|
+
KOALA_INTEROP_2(JsdocStringFromDeclaration, KNativePointer, KNativePointer, KNativePointer);
|
|
191
|
+
|
|
192
|
+
KNativePointer impl_GetLicenseFromRootNode(KNativePointer context, KNativePointer node)
|
|
193
|
+
{
|
|
194
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
195
|
+
const auto _node = reinterpret_cast<es2panda_AstNode*>(node);
|
|
196
|
+
auto result = GetImpl()->GetLicenseFromRootNode(_context, _node);
|
|
197
|
+
return StageArena::strdup(result);
|
|
198
|
+
}
|
|
199
|
+
KOALA_INTEROP_2(GetLicenseFromRootNode, KNativePointer, KNativePointer, KNativePointer);
|
|
200
|
+
|
|
201
|
+
KNativePointer impl_FirstDeclarationByNameFromNode(KNativePointer context, KNativePointer node, KStringPtr& name)
|
|
202
|
+
{
|
|
203
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
204
|
+
const auto _node = reinterpret_cast<es2panda_AstNode*>(node);
|
|
205
|
+
const auto _name = getStringCopy(name);
|
|
206
|
+
auto result = GetImpl()->FirstDeclarationByNameFromNode(_context, _node, _name);
|
|
207
|
+
return result;
|
|
208
|
+
}
|
|
209
|
+
KOALA_INTEROP_3(FirstDeclarationByNameFromNode, KNativePointer, KNativePointer, KNativePointer, KStringPtr);
|
|
210
|
+
|
|
211
|
+
KNativePointer impl_FirstDeclarationByNameFromProgram(KNativePointer context, KNativePointer program, KStringPtr& name)
|
|
212
|
+
{
|
|
213
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
214
|
+
const auto _program = reinterpret_cast<es2panda_Program*>(program);
|
|
215
|
+
const auto _name = getStringCopy(name);
|
|
216
|
+
auto result = GetImpl()->FirstDeclarationByNameFromProgram(_context, _program, _name);
|
|
217
|
+
return result;
|
|
218
|
+
}
|
|
219
|
+
KOALA_INTEROP_3(FirstDeclarationByNameFromProgram, KNativePointer, KNativePointer, KNativePointer, KStringPtr);
|
|
220
|
+
|
|
221
|
+
KNativePointer impl_AllDeclarationsByNameFromNode(KNativePointer context, KNativePointer node, KStringPtr& name)
|
|
222
|
+
{
|
|
223
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
224
|
+
const auto _node = reinterpret_cast<es2panda_AstNode*>(node);
|
|
225
|
+
const auto _name = getStringCopy(name);
|
|
226
|
+
std::size_t length;
|
|
227
|
+
auto result = GetImpl()->AllDeclarationsByNameFromNode(_context, _node, _name, &length);
|
|
228
|
+
return StageArena::cloneVector(result, length);
|
|
229
|
+
}
|
|
230
|
+
KOALA_INTEROP_3(AllDeclarationsByNameFromNode, KNativePointer, KNativePointer, KNativePointer, KStringPtr);
|
|
231
|
+
|
|
232
|
+
KNativePointer impl_AllDeclarationsByNameFromProgram(KNativePointer context, KNativePointer program, KStringPtr& name)
|
|
233
|
+
{
|
|
234
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
235
|
+
const auto _program = reinterpret_cast<es2panda_Program*>(program);
|
|
236
|
+
const auto _name = getStringCopy(name);
|
|
237
|
+
std::size_t length;
|
|
238
|
+
auto result = GetImpl()->AllDeclarationsByNameFromProgram(_context, _program, _name, &length);
|
|
239
|
+
return StageArena::cloneVector(result, length);
|
|
240
|
+
}
|
|
241
|
+
KOALA_INTEROP_3(AllDeclarationsByNameFromProgram, KNativePointer, KNativePointer, KNativePointer, KStringPtr);
|
|
242
|
+
|
|
243
|
+
void impl_InsertETSImportDeclarationAndParse(KNativePointer context, KNativePointer program, KNativePointer node)
|
|
244
|
+
{
|
|
245
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
246
|
+
const auto _program = reinterpret_cast<es2panda_Program*>(program);
|
|
247
|
+
const auto _node = reinterpret_cast<es2panda_AstNode*>(node);
|
|
248
|
+
GetImpl()->InsertETSImportDeclarationAndParse(_context, _program, _node);
|
|
249
|
+
return ;
|
|
250
|
+
}
|
|
251
|
+
KOALA_INTEROP_V3(InsertETSImportDeclarationAndParse, KNativePointer, KNativePointer, KNativePointer);
|
|
252
|
+
|
|
253
|
+
KInt impl_GenerateStaticDeclarationsFromContext(KNativePointer context, KStringPtr& outputPath)
|
|
254
|
+
{
|
|
255
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
256
|
+
const auto _outputPath = getStringCopy(outputPath);
|
|
257
|
+
auto result = GetImpl()->GenerateStaticDeclarationsFromContext(_context, _outputPath);
|
|
258
|
+
return result;
|
|
259
|
+
}
|
|
260
|
+
KOALA_INTEROP_2(GenerateStaticDeclarationsFromContext, KInt, KNativePointer, KStringPtr);
|
|
261
|
+
|
|
262
|
+
KBoolean impl_IsExpression(KNativePointer ast)
|
|
263
|
+
{
|
|
264
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
265
|
+
auto result = GetImpl()->IsExpression(_ast);
|
|
266
|
+
return result;
|
|
267
|
+
}
|
|
268
|
+
KOALA_INTEROP_1(IsExpression, KBoolean, KNativePointer);
|
|
269
|
+
|
|
270
|
+
KBoolean impl_IsStatement(KNativePointer ast)
|
|
271
|
+
{
|
|
272
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
273
|
+
auto result = GetImpl()->IsStatement(_ast);
|
|
274
|
+
return result;
|
|
275
|
+
}
|
|
276
|
+
KOALA_INTEROP_1(IsStatement, KBoolean, KNativePointer);
|
|
277
|
+
|
|
278
|
+
KBoolean impl_IsArrowFunctionExpression(KNativePointer ast)
|
|
279
|
+
{
|
|
280
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
281
|
+
auto result = GetImpl()->IsArrowFunctionExpression(_ast);
|
|
282
|
+
return result;
|
|
283
|
+
}
|
|
284
|
+
KOALA_INTEROP_1(IsArrowFunctionExpression, KBoolean, KNativePointer);
|
|
285
|
+
|
|
286
|
+
KBoolean impl_IsAnnotationDeclaration(KNativePointer ast)
|
|
287
|
+
{
|
|
288
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
289
|
+
auto result = GetImpl()->IsAnnotationDeclaration(_ast);
|
|
290
|
+
return result;
|
|
291
|
+
}
|
|
292
|
+
KOALA_INTEROP_1(IsAnnotationDeclaration, KBoolean, KNativePointer);
|
|
293
|
+
|
|
294
|
+
KBoolean impl_IsAnnotationUsage(KNativePointer ast)
|
|
295
|
+
{
|
|
296
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
297
|
+
auto result = GetImpl()->IsAnnotationUsage(_ast);
|
|
298
|
+
return result;
|
|
299
|
+
}
|
|
300
|
+
KOALA_INTEROP_1(IsAnnotationUsage, KBoolean, KNativePointer);
|
|
301
|
+
|
|
302
|
+
KBoolean impl_IsAssertStatement(KNativePointer ast)
|
|
303
|
+
{
|
|
304
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
305
|
+
auto result = GetImpl()->IsAssertStatement(_ast);
|
|
306
|
+
return result;
|
|
307
|
+
}
|
|
308
|
+
KOALA_INTEROP_1(IsAssertStatement, KBoolean, KNativePointer);
|
|
309
|
+
|
|
310
|
+
KBoolean impl_IsAwaitExpression(KNativePointer ast)
|
|
311
|
+
{
|
|
312
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
313
|
+
auto result = GetImpl()->IsAwaitExpression(_ast);
|
|
314
|
+
return result;
|
|
315
|
+
}
|
|
316
|
+
KOALA_INTEROP_1(IsAwaitExpression, KBoolean, KNativePointer);
|
|
317
|
+
|
|
318
|
+
KBoolean impl_IsBigIntLiteral(KNativePointer ast)
|
|
319
|
+
{
|
|
320
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
321
|
+
auto result = GetImpl()->IsBigIntLiteral(_ast);
|
|
322
|
+
return result;
|
|
323
|
+
}
|
|
324
|
+
KOALA_INTEROP_1(IsBigIntLiteral, KBoolean, KNativePointer);
|
|
325
|
+
|
|
326
|
+
KBoolean impl_IsBinaryExpression(KNativePointer ast)
|
|
327
|
+
{
|
|
328
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
329
|
+
auto result = GetImpl()->IsBinaryExpression(_ast);
|
|
330
|
+
return result;
|
|
331
|
+
}
|
|
332
|
+
KOALA_INTEROP_1(IsBinaryExpression, KBoolean, KNativePointer);
|
|
333
|
+
|
|
334
|
+
KBoolean impl_IsBlockStatement(KNativePointer ast)
|
|
335
|
+
{
|
|
336
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
337
|
+
auto result = GetImpl()->IsBlockStatement(_ast);
|
|
338
|
+
return result;
|
|
339
|
+
}
|
|
340
|
+
KOALA_INTEROP_1(IsBlockStatement, KBoolean, KNativePointer);
|
|
341
|
+
|
|
342
|
+
KBoolean impl_IsBooleanLiteral(KNativePointer ast)
|
|
343
|
+
{
|
|
344
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
345
|
+
auto result = GetImpl()->IsBooleanLiteral(_ast);
|
|
346
|
+
return result;
|
|
347
|
+
}
|
|
348
|
+
KOALA_INTEROP_1(IsBooleanLiteral, KBoolean, KNativePointer);
|
|
349
|
+
|
|
350
|
+
KBoolean impl_IsBreakStatement(KNativePointer ast)
|
|
351
|
+
{
|
|
352
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
353
|
+
auto result = GetImpl()->IsBreakStatement(_ast);
|
|
354
|
+
return result;
|
|
355
|
+
}
|
|
356
|
+
KOALA_INTEROP_1(IsBreakStatement, KBoolean, KNativePointer);
|
|
357
|
+
|
|
358
|
+
KBoolean impl_IsCallExpression(KNativePointer ast)
|
|
359
|
+
{
|
|
360
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
361
|
+
auto result = GetImpl()->IsCallExpression(_ast);
|
|
362
|
+
return result;
|
|
363
|
+
}
|
|
364
|
+
KOALA_INTEROP_1(IsCallExpression, KBoolean, KNativePointer);
|
|
365
|
+
|
|
366
|
+
KBoolean impl_IsCatchClause(KNativePointer ast)
|
|
367
|
+
{
|
|
368
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
369
|
+
auto result = GetImpl()->IsCatchClause(_ast);
|
|
370
|
+
return result;
|
|
371
|
+
}
|
|
372
|
+
KOALA_INTEROP_1(IsCatchClause, KBoolean, KNativePointer);
|
|
373
|
+
|
|
374
|
+
KBoolean impl_IsChainExpression(KNativePointer ast)
|
|
375
|
+
{
|
|
376
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
377
|
+
auto result = GetImpl()->IsChainExpression(_ast);
|
|
378
|
+
return result;
|
|
379
|
+
}
|
|
380
|
+
KOALA_INTEROP_1(IsChainExpression, KBoolean, KNativePointer);
|
|
381
|
+
|
|
382
|
+
KBoolean impl_IsCharLiteral(KNativePointer ast)
|
|
383
|
+
{
|
|
384
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
385
|
+
auto result = GetImpl()->IsCharLiteral(_ast);
|
|
386
|
+
return result;
|
|
387
|
+
}
|
|
388
|
+
KOALA_INTEROP_1(IsCharLiteral, KBoolean, KNativePointer);
|
|
389
|
+
|
|
390
|
+
KBoolean impl_IsClassDefinition(KNativePointer ast)
|
|
391
|
+
{
|
|
392
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
393
|
+
auto result = GetImpl()->IsClassDefinition(_ast);
|
|
394
|
+
return result;
|
|
395
|
+
}
|
|
396
|
+
KOALA_INTEROP_1(IsClassDefinition, KBoolean, KNativePointer);
|
|
397
|
+
|
|
398
|
+
KBoolean impl_IsClassDeclaration(KNativePointer ast)
|
|
399
|
+
{
|
|
400
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
401
|
+
auto result = GetImpl()->IsClassDeclaration(_ast);
|
|
402
|
+
return result;
|
|
403
|
+
}
|
|
404
|
+
KOALA_INTEROP_1(IsClassDeclaration, KBoolean, KNativePointer);
|
|
405
|
+
|
|
406
|
+
KBoolean impl_IsClassExpression(KNativePointer ast)
|
|
407
|
+
{
|
|
408
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
409
|
+
auto result = GetImpl()->IsClassExpression(_ast);
|
|
410
|
+
return result;
|
|
411
|
+
}
|
|
412
|
+
KOALA_INTEROP_1(IsClassExpression, KBoolean, KNativePointer);
|
|
413
|
+
|
|
414
|
+
KBoolean impl_IsClassProperty(KNativePointer ast)
|
|
415
|
+
{
|
|
416
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
417
|
+
auto result = GetImpl()->IsClassProperty(_ast);
|
|
418
|
+
return result;
|
|
419
|
+
}
|
|
420
|
+
KOALA_INTEROP_1(IsClassProperty, KBoolean, KNativePointer);
|
|
421
|
+
|
|
422
|
+
KBoolean impl_IsClassStaticBlock(KNativePointer ast)
|
|
423
|
+
{
|
|
424
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
425
|
+
auto result = GetImpl()->IsClassStaticBlock(_ast);
|
|
426
|
+
return result;
|
|
427
|
+
}
|
|
428
|
+
KOALA_INTEROP_1(IsClassStaticBlock, KBoolean, KNativePointer);
|
|
429
|
+
|
|
430
|
+
KBoolean impl_IsConditionalExpression(KNativePointer ast)
|
|
431
|
+
{
|
|
432
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
433
|
+
auto result = GetImpl()->IsConditionalExpression(_ast);
|
|
434
|
+
return result;
|
|
435
|
+
}
|
|
436
|
+
KOALA_INTEROP_1(IsConditionalExpression, KBoolean, KNativePointer);
|
|
437
|
+
|
|
438
|
+
KBoolean impl_IsContinueStatement(KNativePointer ast)
|
|
439
|
+
{
|
|
440
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
441
|
+
auto result = GetImpl()->IsContinueStatement(_ast);
|
|
442
|
+
return result;
|
|
443
|
+
}
|
|
444
|
+
KOALA_INTEROP_1(IsContinueStatement, KBoolean, KNativePointer);
|
|
445
|
+
|
|
446
|
+
KBoolean impl_IsDebuggerStatement(KNativePointer ast)
|
|
447
|
+
{
|
|
448
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
449
|
+
auto result = GetImpl()->IsDebuggerStatement(_ast);
|
|
450
|
+
return result;
|
|
451
|
+
}
|
|
452
|
+
KOALA_INTEROP_1(IsDebuggerStatement, KBoolean, KNativePointer);
|
|
453
|
+
|
|
454
|
+
KBoolean impl_IsDecorator(KNativePointer ast)
|
|
455
|
+
{
|
|
456
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
457
|
+
auto result = GetImpl()->IsDecorator(_ast);
|
|
458
|
+
return result;
|
|
459
|
+
}
|
|
460
|
+
KOALA_INTEROP_1(IsDecorator, KBoolean, KNativePointer);
|
|
461
|
+
|
|
462
|
+
KBoolean impl_IsDirectEvalExpression(KNativePointer ast)
|
|
463
|
+
{
|
|
464
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
465
|
+
auto result = GetImpl()->IsDirectEvalExpression(_ast);
|
|
466
|
+
return result;
|
|
467
|
+
}
|
|
468
|
+
KOALA_INTEROP_1(IsDirectEvalExpression, KBoolean, KNativePointer);
|
|
469
|
+
|
|
470
|
+
KBoolean impl_IsDoWhileStatement(KNativePointer ast)
|
|
471
|
+
{
|
|
472
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
473
|
+
auto result = GetImpl()->IsDoWhileStatement(_ast);
|
|
474
|
+
return result;
|
|
475
|
+
}
|
|
476
|
+
KOALA_INTEROP_1(IsDoWhileStatement, KBoolean, KNativePointer);
|
|
477
|
+
|
|
478
|
+
KBoolean impl_IsEmptyStatement(KNativePointer ast)
|
|
479
|
+
{
|
|
480
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
481
|
+
auto result = GetImpl()->IsEmptyStatement(_ast);
|
|
482
|
+
return result;
|
|
483
|
+
}
|
|
484
|
+
KOALA_INTEROP_1(IsEmptyStatement, KBoolean, KNativePointer);
|
|
485
|
+
|
|
486
|
+
KBoolean impl_IsExportAllDeclaration(KNativePointer ast)
|
|
487
|
+
{
|
|
488
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
489
|
+
auto result = GetImpl()->IsExportAllDeclaration(_ast);
|
|
490
|
+
return result;
|
|
491
|
+
}
|
|
492
|
+
KOALA_INTEROP_1(IsExportAllDeclaration, KBoolean, KNativePointer);
|
|
493
|
+
|
|
494
|
+
KBoolean impl_IsExportDefaultDeclaration(KNativePointer ast)
|
|
495
|
+
{
|
|
496
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
497
|
+
auto result = GetImpl()->IsExportDefaultDeclaration(_ast);
|
|
498
|
+
return result;
|
|
499
|
+
}
|
|
500
|
+
KOALA_INTEROP_1(IsExportDefaultDeclaration, KBoolean, KNativePointer);
|
|
501
|
+
|
|
502
|
+
KBoolean impl_IsExportNamedDeclaration(KNativePointer ast)
|
|
503
|
+
{
|
|
504
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
505
|
+
auto result = GetImpl()->IsExportNamedDeclaration(_ast);
|
|
506
|
+
return result;
|
|
507
|
+
}
|
|
508
|
+
KOALA_INTEROP_1(IsExportNamedDeclaration, KBoolean, KNativePointer);
|
|
509
|
+
|
|
510
|
+
KBoolean impl_IsExportSpecifier(KNativePointer ast)
|
|
511
|
+
{
|
|
512
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
513
|
+
auto result = GetImpl()->IsExportSpecifier(_ast);
|
|
514
|
+
return result;
|
|
515
|
+
}
|
|
516
|
+
KOALA_INTEROP_1(IsExportSpecifier, KBoolean, KNativePointer);
|
|
517
|
+
|
|
518
|
+
KBoolean impl_IsExpressionStatement(KNativePointer ast)
|
|
519
|
+
{
|
|
520
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
521
|
+
auto result = GetImpl()->IsExpressionStatement(_ast);
|
|
522
|
+
return result;
|
|
523
|
+
}
|
|
524
|
+
KOALA_INTEROP_1(IsExpressionStatement, KBoolean, KNativePointer);
|
|
525
|
+
|
|
526
|
+
KBoolean impl_IsForInStatement(KNativePointer ast)
|
|
527
|
+
{
|
|
528
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
529
|
+
auto result = GetImpl()->IsForInStatement(_ast);
|
|
530
|
+
return result;
|
|
531
|
+
}
|
|
532
|
+
KOALA_INTEROP_1(IsForInStatement, KBoolean, KNativePointer);
|
|
533
|
+
|
|
534
|
+
KBoolean impl_IsForOfStatement(KNativePointer ast)
|
|
535
|
+
{
|
|
536
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
537
|
+
auto result = GetImpl()->IsForOfStatement(_ast);
|
|
538
|
+
return result;
|
|
539
|
+
}
|
|
540
|
+
KOALA_INTEROP_1(IsForOfStatement, KBoolean, KNativePointer);
|
|
541
|
+
|
|
542
|
+
KBoolean impl_IsForUpdateStatement(KNativePointer ast)
|
|
543
|
+
{
|
|
544
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
545
|
+
auto result = GetImpl()->IsForUpdateStatement(_ast);
|
|
546
|
+
return result;
|
|
547
|
+
}
|
|
548
|
+
KOALA_INTEROP_1(IsForUpdateStatement, KBoolean, KNativePointer);
|
|
549
|
+
|
|
550
|
+
KBoolean impl_IsFunctionDeclaration(KNativePointer ast)
|
|
551
|
+
{
|
|
552
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
553
|
+
auto result = GetImpl()->IsFunctionDeclaration(_ast);
|
|
554
|
+
return result;
|
|
555
|
+
}
|
|
556
|
+
KOALA_INTEROP_1(IsFunctionDeclaration, KBoolean, KNativePointer);
|
|
557
|
+
|
|
558
|
+
KBoolean impl_IsFunctionExpression(KNativePointer ast)
|
|
559
|
+
{
|
|
560
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
561
|
+
auto result = GetImpl()->IsFunctionExpression(_ast);
|
|
562
|
+
return result;
|
|
563
|
+
}
|
|
564
|
+
KOALA_INTEROP_1(IsFunctionExpression, KBoolean, KNativePointer);
|
|
565
|
+
|
|
566
|
+
KBoolean impl_IsIdentifier(KNativePointer ast)
|
|
567
|
+
{
|
|
568
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
569
|
+
auto result = GetImpl()->IsIdentifier(_ast);
|
|
570
|
+
return result;
|
|
571
|
+
}
|
|
572
|
+
KOALA_INTEROP_1(IsIdentifier, KBoolean, KNativePointer);
|
|
573
|
+
|
|
574
|
+
KBoolean impl_IsDummyNode(KNativePointer ast)
|
|
575
|
+
{
|
|
576
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
577
|
+
auto result = GetImpl()->IsDummyNode(_ast);
|
|
578
|
+
return result;
|
|
579
|
+
}
|
|
580
|
+
KOALA_INTEROP_1(IsDummyNode, KBoolean, KNativePointer);
|
|
581
|
+
|
|
582
|
+
KBoolean impl_IsIfStatement(KNativePointer ast)
|
|
583
|
+
{
|
|
584
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
585
|
+
auto result = GetImpl()->IsIfStatement(_ast);
|
|
586
|
+
return result;
|
|
587
|
+
}
|
|
588
|
+
KOALA_INTEROP_1(IsIfStatement, KBoolean, KNativePointer);
|
|
589
|
+
|
|
590
|
+
KBoolean impl_IsImportDeclaration(KNativePointer ast)
|
|
591
|
+
{
|
|
592
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
593
|
+
auto result = GetImpl()->IsImportDeclaration(_ast);
|
|
594
|
+
return result;
|
|
595
|
+
}
|
|
596
|
+
KOALA_INTEROP_1(IsImportDeclaration, KBoolean, KNativePointer);
|
|
597
|
+
|
|
598
|
+
KBoolean impl_IsImportExpression(KNativePointer ast)
|
|
599
|
+
{
|
|
600
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
601
|
+
auto result = GetImpl()->IsImportExpression(_ast);
|
|
602
|
+
return result;
|
|
603
|
+
}
|
|
604
|
+
KOALA_INTEROP_1(IsImportExpression, KBoolean, KNativePointer);
|
|
605
|
+
|
|
606
|
+
KBoolean impl_IsImportDefaultSpecifier(KNativePointer ast)
|
|
607
|
+
{
|
|
608
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
609
|
+
auto result = GetImpl()->IsImportDefaultSpecifier(_ast);
|
|
610
|
+
return result;
|
|
611
|
+
}
|
|
612
|
+
KOALA_INTEROP_1(IsImportDefaultSpecifier, KBoolean, KNativePointer);
|
|
613
|
+
|
|
614
|
+
KBoolean impl_IsImportNamespaceSpecifier(KNativePointer ast)
|
|
615
|
+
{
|
|
616
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
617
|
+
auto result = GetImpl()->IsImportNamespaceSpecifier(_ast);
|
|
618
|
+
return result;
|
|
619
|
+
}
|
|
620
|
+
KOALA_INTEROP_1(IsImportNamespaceSpecifier, KBoolean, KNativePointer);
|
|
621
|
+
|
|
622
|
+
KBoolean impl_IsImportSpecifier(KNativePointer ast)
|
|
623
|
+
{
|
|
624
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
625
|
+
auto result = GetImpl()->IsImportSpecifier(_ast);
|
|
626
|
+
return result;
|
|
627
|
+
}
|
|
628
|
+
KOALA_INTEROP_1(IsImportSpecifier, KBoolean, KNativePointer);
|
|
629
|
+
|
|
630
|
+
KBoolean impl_IsLabelledStatement(KNativePointer ast)
|
|
631
|
+
{
|
|
632
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
633
|
+
auto result = GetImpl()->IsLabelledStatement(_ast);
|
|
634
|
+
return result;
|
|
635
|
+
}
|
|
636
|
+
KOALA_INTEROP_1(IsLabelledStatement, KBoolean, KNativePointer);
|
|
637
|
+
|
|
638
|
+
KBoolean impl_IsMemberExpression(KNativePointer ast)
|
|
639
|
+
{
|
|
640
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
641
|
+
auto result = GetImpl()->IsMemberExpression(_ast);
|
|
642
|
+
return result;
|
|
643
|
+
}
|
|
644
|
+
KOALA_INTEROP_1(IsMemberExpression, KBoolean, KNativePointer);
|
|
645
|
+
|
|
646
|
+
KBoolean impl_IsMetaProperty(KNativePointer ast)
|
|
647
|
+
{
|
|
648
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
649
|
+
auto result = GetImpl()->IsMetaProperty(_ast);
|
|
650
|
+
return result;
|
|
651
|
+
}
|
|
652
|
+
KOALA_INTEROP_1(IsMetaProperty, KBoolean, KNativePointer);
|
|
653
|
+
|
|
654
|
+
KBoolean impl_IsMethodDefinition(KNativePointer ast)
|
|
655
|
+
{
|
|
656
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
657
|
+
auto result = GetImpl()->IsMethodDefinition(_ast);
|
|
658
|
+
return result;
|
|
659
|
+
}
|
|
660
|
+
KOALA_INTEROP_1(IsMethodDefinition, KBoolean, KNativePointer);
|
|
661
|
+
|
|
662
|
+
KBoolean impl_IsNamedType(KNativePointer ast)
|
|
663
|
+
{
|
|
664
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
665
|
+
auto result = GetImpl()->IsNamedType(_ast);
|
|
666
|
+
return result;
|
|
667
|
+
}
|
|
668
|
+
KOALA_INTEROP_1(IsNamedType, KBoolean, KNativePointer);
|
|
669
|
+
|
|
670
|
+
KBoolean impl_IsNewExpression(KNativePointer ast)
|
|
671
|
+
{
|
|
672
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
673
|
+
auto result = GetImpl()->IsNewExpression(_ast);
|
|
674
|
+
return result;
|
|
675
|
+
}
|
|
676
|
+
KOALA_INTEROP_1(IsNewExpression, KBoolean, KNativePointer);
|
|
677
|
+
|
|
678
|
+
KBoolean impl_IsNullLiteral(KNativePointer ast)
|
|
679
|
+
{
|
|
680
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
681
|
+
auto result = GetImpl()->IsNullLiteral(_ast);
|
|
682
|
+
return result;
|
|
683
|
+
}
|
|
684
|
+
KOALA_INTEROP_1(IsNullLiteral, KBoolean, KNativePointer);
|
|
685
|
+
|
|
686
|
+
KBoolean impl_IsUndefinedLiteral(KNativePointer ast)
|
|
687
|
+
{
|
|
688
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
689
|
+
auto result = GetImpl()->IsUndefinedLiteral(_ast);
|
|
690
|
+
return result;
|
|
691
|
+
}
|
|
692
|
+
KOALA_INTEROP_1(IsUndefinedLiteral, KBoolean, KNativePointer);
|
|
693
|
+
|
|
694
|
+
KBoolean impl_IsNumberLiteral(KNativePointer ast)
|
|
695
|
+
{
|
|
696
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
697
|
+
auto result = GetImpl()->IsNumberLiteral(_ast);
|
|
698
|
+
return result;
|
|
699
|
+
}
|
|
700
|
+
KOALA_INTEROP_1(IsNumberLiteral, KBoolean, KNativePointer);
|
|
701
|
+
|
|
702
|
+
KBoolean impl_IsOmittedExpression(KNativePointer ast)
|
|
703
|
+
{
|
|
704
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
705
|
+
auto result = GetImpl()->IsOmittedExpression(_ast);
|
|
706
|
+
return result;
|
|
707
|
+
}
|
|
708
|
+
KOALA_INTEROP_1(IsOmittedExpression, KBoolean, KNativePointer);
|
|
709
|
+
|
|
710
|
+
KBoolean impl_IsOverloadDeclaration(KNativePointer ast)
|
|
711
|
+
{
|
|
712
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
713
|
+
auto result = GetImpl()->IsOverloadDeclaration(_ast);
|
|
714
|
+
return result;
|
|
715
|
+
}
|
|
716
|
+
KOALA_INTEROP_1(IsOverloadDeclaration, KBoolean, KNativePointer);
|
|
717
|
+
|
|
718
|
+
KBoolean impl_IsPrefixAssertionExpression(KNativePointer ast)
|
|
719
|
+
{
|
|
720
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
721
|
+
auto result = GetImpl()->IsPrefixAssertionExpression(_ast);
|
|
722
|
+
return result;
|
|
723
|
+
}
|
|
724
|
+
KOALA_INTEROP_1(IsPrefixAssertionExpression, KBoolean, KNativePointer);
|
|
725
|
+
|
|
726
|
+
KBoolean impl_IsProperty(KNativePointer ast)
|
|
727
|
+
{
|
|
728
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
729
|
+
auto result = GetImpl()->IsProperty(_ast);
|
|
730
|
+
return result;
|
|
731
|
+
}
|
|
732
|
+
KOALA_INTEROP_1(IsProperty, KBoolean, KNativePointer);
|
|
733
|
+
|
|
734
|
+
KBoolean impl_IsRegExpLiteral(KNativePointer ast)
|
|
735
|
+
{
|
|
736
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
737
|
+
auto result = GetImpl()->IsRegExpLiteral(_ast);
|
|
738
|
+
return result;
|
|
739
|
+
}
|
|
740
|
+
KOALA_INTEROP_1(IsRegExpLiteral, KBoolean, KNativePointer);
|
|
741
|
+
|
|
742
|
+
KBoolean impl_IsETSReExportDeclaration(KNativePointer ast)
|
|
743
|
+
{
|
|
744
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
745
|
+
auto result = GetImpl()->IsETSReExportDeclaration(_ast);
|
|
746
|
+
return result;
|
|
747
|
+
}
|
|
748
|
+
KOALA_INTEROP_1(IsETSReExportDeclaration, KBoolean, KNativePointer);
|
|
749
|
+
|
|
750
|
+
KBoolean impl_IsReturnStatement(KNativePointer ast)
|
|
751
|
+
{
|
|
752
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
753
|
+
auto result = GetImpl()->IsReturnStatement(_ast);
|
|
754
|
+
return result;
|
|
755
|
+
}
|
|
756
|
+
KOALA_INTEROP_1(IsReturnStatement, KBoolean, KNativePointer);
|
|
757
|
+
|
|
758
|
+
KBoolean impl_IsScriptFunction(KNativePointer ast)
|
|
759
|
+
{
|
|
760
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
761
|
+
auto result = GetImpl()->IsScriptFunction(_ast);
|
|
762
|
+
return result;
|
|
763
|
+
}
|
|
764
|
+
KOALA_INTEROP_1(IsScriptFunction, KBoolean, KNativePointer);
|
|
765
|
+
|
|
766
|
+
KBoolean impl_IsSequenceExpression(KNativePointer ast)
|
|
767
|
+
{
|
|
768
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
769
|
+
auto result = GetImpl()->IsSequenceExpression(_ast);
|
|
770
|
+
return result;
|
|
771
|
+
}
|
|
772
|
+
KOALA_INTEROP_1(IsSequenceExpression, KBoolean, KNativePointer);
|
|
773
|
+
|
|
774
|
+
KBoolean impl_IsStringLiteral(KNativePointer ast)
|
|
775
|
+
{
|
|
776
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
777
|
+
auto result = GetImpl()->IsStringLiteral(_ast);
|
|
778
|
+
return result;
|
|
779
|
+
}
|
|
780
|
+
KOALA_INTEROP_1(IsStringLiteral, KBoolean, KNativePointer);
|
|
781
|
+
|
|
782
|
+
KBoolean impl_IsETSNonNullishTypeNode(KNativePointer ast)
|
|
783
|
+
{
|
|
784
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
785
|
+
auto result = GetImpl()->IsETSNonNullishTypeNode(_ast);
|
|
786
|
+
return result;
|
|
787
|
+
}
|
|
788
|
+
KOALA_INTEROP_1(IsETSNonNullishTypeNode, KBoolean, KNativePointer);
|
|
789
|
+
|
|
790
|
+
KBoolean impl_IsETSNullType(KNativePointer ast)
|
|
791
|
+
{
|
|
792
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
793
|
+
auto result = GetImpl()->IsETSNullType(_ast);
|
|
794
|
+
return result;
|
|
795
|
+
}
|
|
796
|
+
KOALA_INTEROP_1(IsETSNullType, KBoolean, KNativePointer);
|
|
797
|
+
|
|
798
|
+
KBoolean impl_IsETSUndefinedType(KNativePointer ast)
|
|
799
|
+
{
|
|
800
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
801
|
+
auto result = GetImpl()->IsETSUndefinedType(_ast);
|
|
802
|
+
return result;
|
|
803
|
+
}
|
|
804
|
+
KOALA_INTEROP_1(IsETSUndefinedType, KBoolean, KNativePointer);
|
|
805
|
+
|
|
806
|
+
KBoolean impl_IsETSNeverType(KNativePointer ast)
|
|
807
|
+
{
|
|
808
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
809
|
+
auto result = GetImpl()->IsETSNeverType(_ast);
|
|
810
|
+
return result;
|
|
811
|
+
}
|
|
812
|
+
KOALA_INTEROP_1(IsETSNeverType, KBoolean, KNativePointer);
|
|
813
|
+
|
|
814
|
+
KBoolean impl_IsETSStringLiteralType(KNativePointer ast)
|
|
815
|
+
{
|
|
816
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
817
|
+
auto result = GetImpl()->IsETSStringLiteralType(_ast);
|
|
818
|
+
return result;
|
|
819
|
+
}
|
|
820
|
+
KOALA_INTEROP_1(IsETSStringLiteralType, KBoolean, KNativePointer);
|
|
821
|
+
|
|
822
|
+
KBoolean impl_IsETSIntrinsicNode(KNativePointer ast)
|
|
823
|
+
{
|
|
824
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
825
|
+
auto result = GetImpl()->IsETSIntrinsicNode(_ast);
|
|
826
|
+
return result;
|
|
827
|
+
}
|
|
828
|
+
KOALA_INTEROP_1(IsETSIntrinsicNode, KBoolean, KNativePointer);
|
|
829
|
+
|
|
830
|
+
KBoolean impl_IsETSFunctionType(KNativePointer ast)
|
|
831
|
+
{
|
|
832
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
833
|
+
auto result = GetImpl()->IsETSFunctionType(_ast);
|
|
834
|
+
return result;
|
|
835
|
+
}
|
|
836
|
+
KOALA_INTEROP_1(IsETSFunctionType, KBoolean, KNativePointer);
|
|
837
|
+
|
|
838
|
+
KBoolean impl_IsETSWildcardType(KNativePointer ast)
|
|
839
|
+
{
|
|
840
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
841
|
+
auto result = GetImpl()->IsETSWildcardType(_ast);
|
|
842
|
+
return result;
|
|
843
|
+
}
|
|
844
|
+
KOALA_INTEROP_1(IsETSWildcardType, KBoolean, KNativePointer);
|
|
845
|
+
|
|
846
|
+
KBoolean impl_IsETSPrimitiveType(KNativePointer ast)
|
|
847
|
+
{
|
|
848
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
849
|
+
auto result = GetImpl()->IsETSPrimitiveType(_ast);
|
|
850
|
+
return result;
|
|
851
|
+
}
|
|
852
|
+
KOALA_INTEROP_1(IsETSPrimitiveType, KBoolean, KNativePointer);
|
|
853
|
+
|
|
854
|
+
KBoolean impl_IsETSPackageDeclaration(KNativePointer ast)
|
|
855
|
+
{
|
|
856
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
857
|
+
auto result = GetImpl()->IsETSPackageDeclaration(_ast);
|
|
858
|
+
return result;
|
|
859
|
+
}
|
|
860
|
+
KOALA_INTEROP_1(IsETSPackageDeclaration, KBoolean, KNativePointer);
|
|
861
|
+
|
|
862
|
+
KBoolean impl_IsETSClassLiteral(KNativePointer ast)
|
|
863
|
+
{
|
|
864
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
865
|
+
auto result = GetImpl()->IsETSClassLiteral(_ast);
|
|
866
|
+
return result;
|
|
867
|
+
}
|
|
868
|
+
KOALA_INTEROP_1(IsETSClassLiteral, KBoolean, KNativePointer);
|
|
869
|
+
|
|
870
|
+
KBoolean impl_IsETSTypeReference(KNativePointer ast)
|
|
871
|
+
{
|
|
872
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
873
|
+
auto result = GetImpl()->IsETSTypeReference(_ast);
|
|
874
|
+
return result;
|
|
875
|
+
}
|
|
876
|
+
KOALA_INTEROP_1(IsETSTypeReference, KBoolean, KNativePointer);
|
|
877
|
+
|
|
878
|
+
KBoolean impl_IsETSTypeReferencePart(KNativePointer ast)
|
|
879
|
+
{
|
|
880
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
881
|
+
auto result = GetImpl()->IsETSTypeReferencePart(_ast);
|
|
882
|
+
return result;
|
|
883
|
+
}
|
|
884
|
+
KOALA_INTEROP_1(IsETSTypeReferencePart, KBoolean, KNativePointer);
|
|
885
|
+
|
|
886
|
+
KBoolean impl_IsETSUnionType(KNativePointer ast)
|
|
887
|
+
{
|
|
888
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
889
|
+
auto result = GetImpl()->IsETSUnionType(_ast);
|
|
890
|
+
return result;
|
|
891
|
+
}
|
|
892
|
+
KOALA_INTEROP_1(IsETSUnionType, KBoolean, KNativePointer);
|
|
893
|
+
|
|
894
|
+
KBoolean impl_IsETSKeyofType(KNativePointer ast)
|
|
895
|
+
{
|
|
896
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
897
|
+
auto result = GetImpl()->IsETSKeyofType(_ast);
|
|
898
|
+
return result;
|
|
899
|
+
}
|
|
900
|
+
KOALA_INTEROP_1(IsETSKeyofType, KBoolean, KNativePointer);
|
|
901
|
+
|
|
902
|
+
KBoolean impl_IsETSNewArrayInstanceExpression(KNativePointer ast)
|
|
903
|
+
{
|
|
904
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
905
|
+
auto result = GetImpl()->IsETSNewArrayInstanceExpression(_ast);
|
|
906
|
+
return result;
|
|
907
|
+
}
|
|
908
|
+
KOALA_INTEROP_1(IsETSNewArrayInstanceExpression, KBoolean, KNativePointer);
|
|
909
|
+
|
|
910
|
+
KBoolean impl_IsETSNewMultiDimArrayInstanceExpression(KNativePointer ast)
|
|
911
|
+
{
|
|
912
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
913
|
+
auto result = GetImpl()->IsETSNewMultiDimArrayInstanceExpression(_ast);
|
|
914
|
+
return result;
|
|
915
|
+
}
|
|
916
|
+
KOALA_INTEROP_1(IsETSNewMultiDimArrayInstanceExpression, KBoolean, KNativePointer);
|
|
917
|
+
|
|
918
|
+
KBoolean impl_IsETSNewClassInstanceExpression(KNativePointer ast)
|
|
919
|
+
{
|
|
920
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
921
|
+
auto result = GetImpl()->IsETSNewClassInstanceExpression(_ast);
|
|
922
|
+
return result;
|
|
923
|
+
}
|
|
924
|
+
KOALA_INTEROP_1(IsETSNewClassInstanceExpression, KBoolean, KNativePointer);
|
|
925
|
+
|
|
926
|
+
KBoolean impl_IsETSImportDeclaration(KNativePointer ast)
|
|
927
|
+
{
|
|
928
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
929
|
+
auto result = GetImpl()->IsETSImportDeclaration(_ast);
|
|
930
|
+
return result;
|
|
931
|
+
}
|
|
932
|
+
KOALA_INTEROP_1(IsETSImportDeclaration, KBoolean, KNativePointer);
|
|
933
|
+
|
|
934
|
+
KBoolean impl_IsETSParameterExpression(KNativePointer ast)
|
|
935
|
+
{
|
|
936
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
937
|
+
auto result = GetImpl()->IsETSParameterExpression(_ast);
|
|
938
|
+
return result;
|
|
939
|
+
}
|
|
940
|
+
KOALA_INTEROP_1(IsETSParameterExpression, KBoolean, KNativePointer);
|
|
941
|
+
|
|
942
|
+
KBoolean impl_IsETSTuple(KNativePointer ast)
|
|
943
|
+
{
|
|
944
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
945
|
+
auto result = GetImpl()->IsETSTuple(_ast);
|
|
946
|
+
return result;
|
|
947
|
+
}
|
|
948
|
+
KOALA_INTEROP_1(IsETSTuple, KBoolean, KNativePointer);
|
|
949
|
+
|
|
950
|
+
KBoolean impl_IsETSModule(KNativePointer ast)
|
|
951
|
+
{
|
|
952
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
953
|
+
auto result = GetImpl()->IsETSModule(_ast);
|
|
954
|
+
return result;
|
|
955
|
+
}
|
|
956
|
+
KOALA_INTEROP_1(IsETSModule, KBoolean, KNativePointer);
|
|
957
|
+
|
|
958
|
+
KBoolean impl_IsSuperExpression(KNativePointer ast)
|
|
959
|
+
{
|
|
960
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
961
|
+
auto result = GetImpl()->IsSuperExpression(_ast);
|
|
962
|
+
return result;
|
|
963
|
+
}
|
|
964
|
+
KOALA_INTEROP_1(IsSuperExpression, KBoolean, KNativePointer);
|
|
965
|
+
|
|
966
|
+
KBoolean impl_IsETSStructDeclaration(KNativePointer ast)
|
|
967
|
+
{
|
|
968
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
969
|
+
auto result = GetImpl()->IsETSStructDeclaration(_ast);
|
|
970
|
+
return result;
|
|
971
|
+
}
|
|
972
|
+
KOALA_INTEROP_1(IsETSStructDeclaration, KBoolean, KNativePointer);
|
|
973
|
+
|
|
974
|
+
KBoolean impl_IsSwitchCaseStatement(KNativePointer ast)
|
|
975
|
+
{
|
|
976
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
977
|
+
auto result = GetImpl()->IsSwitchCaseStatement(_ast);
|
|
978
|
+
return result;
|
|
979
|
+
}
|
|
980
|
+
KOALA_INTEROP_1(IsSwitchCaseStatement, KBoolean, KNativePointer);
|
|
981
|
+
|
|
982
|
+
KBoolean impl_IsSwitchStatement(KNativePointer ast)
|
|
983
|
+
{
|
|
984
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
985
|
+
auto result = GetImpl()->IsSwitchStatement(_ast);
|
|
986
|
+
return result;
|
|
987
|
+
}
|
|
988
|
+
KOALA_INTEROP_1(IsSwitchStatement, KBoolean, KNativePointer);
|
|
989
|
+
|
|
990
|
+
KBoolean impl_IsTSEnumDeclaration(KNativePointer ast)
|
|
991
|
+
{
|
|
992
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
993
|
+
auto result = GetImpl()->IsTSEnumDeclaration(_ast);
|
|
994
|
+
return result;
|
|
995
|
+
}
|
|
996
|
+
KOALA_INTEROP_1(IsTSEnumDeclaration, KBoolean, KNativePointer);
|
|
997
|
+
|
|
998
|
+
KBoolean impl_IsTSEnumMember(KNativePointer ast)
|
|
999
|
+
{
|
|
1000
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1001
|
+
auto result = GetImpl()->IsTSEnumMember(_ast);
|
|
1002
|
+
return result;
|
|
1003
|
+
}
|
|
1004
|
+
KOALA_INTEROP_1(IsTSEnumMember, KBoolean, KNativePointer);
|
|
1005
|
+
|
|
1006
|
+
KBoolean impl_IsTSExternalModuleReference(KNativePointer ast)
|
|
1007
|
+
{
|
|
1008
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1009
|
+
auto result = GetImpl()->IsTSExternalModuleReference(_ast);
|
|
1010
|
+
return result;
|
|
1011
|
+
}
|
|
1012
|
+
KOALA_INTEROP_1(IsTSExternalModuleReference, KBoolean, KNativePointer);
|
|
1013
|
+
|
|
1014
|
+
KBoolean impl_IsTSNumberKeyword(KNativePointer ast)
|
|
1015
|
+
{
|
|
1016
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1017
|
+
auto result = GetImpl()->IsTSNumberKeyword(_ast);
|
|
1018
|
+
return result;
|
|
1019
|
+
}
|
|
1020
|
+
KOALA_INTEROP_1(IsTSNumberKeyword, KBoolean, KNativePointer);
|
|
1021
|
+
|
|
1022
|
+
KBoolean impl_IsTSAnyKeyword(KNativePointer ast)
|
|
1023
|
+
{
|
|
1024
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1025
|
+
auto result = GetImpl()->IsTSAnyKeyword(_ast);
|
|
1026
|
+
return result;
|
|
1027
|
+
}
|
|
1028
|
+
KOALA_INTEROP_1(IsTSAnyKeyword, KBoolean, KNativePointer);
|
|
1029
|
+
|
|
1030
|
+
KBoolean impl_IsTSStringKeyword(KNativePointer ast)
|
|
1031
|
+
{
|
|
1032
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1033
|
+
auto result = GetImpl()->IsTSStringKeyword(_ast);
|
|
1034
|
+
return result;
|
|
1035
|
+
}
|
|
1036
|
+
KOALA_INTEROP_1(IsTSStringKeyword, KBoolean, KNativePointer);
|
|
1037
|
+
|
|
1038
|
+
KBoolean impl_IsTSBooleanKeyword(KNativePointer ast)
|
|
1039
|
+
{
|
|
1040
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1041
|
+
auto result = GetImpl()->IsTSBooleanKeyword(_ast);
|
|
1042
|
+
return result;
|
|
1043
|
+
}
|
|
1044
|
+
KOALA_INTEROP_1(IsTSBooleanKeyword, KBoolean, KNativePointer);
|
|
1045
|
+
|
|
1046
|
+
KBoolean impl_IsTSVoidKeyword(KNativePointer ast)
|
|
1047
|
+
{
|
|
1048
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1049
|
+
auto result = GetImpl()->IsTSVoidKeyword(_ast);
|
|
1050
|
+
return result;
|
|
1051
|
+
}
|
|
1052
|
+
KOALA_INTEROP_1(IsTSVoidKeyword, KBoolean, KNativePointer);
|
|
1053
|
+
|
|
1054
|
+
KBoolean impl_IsTSUndefinedKeyword(KNativePointer ast)
|
|
1055
|
+
{
|
|
1056
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1057
|
+
auto result = GetImpl()->IsTSUndefinedKeyword(_ast);
|
|
1058
|
+
return result;
|
|
1059
|
+
}
|
|
1060
|
+
KOALA_INTEROP_1(IsTSUndefinedKeyword, KBoolean, KNativePointer);
|
|
1061
|
+
|
|
1062
|
+
KBoolean impl_IsTSUnknownKeyword(KNativePointer ast)
|
|
1063
|
+
{
|
|
1064
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1065
|
+
auto result = GetImpl()->IsTSUnknownKeyword(_ast);
|
|
1066
|
+
return result;
|
|
1067
|
+
}
|
|
1068
|
+
KOALA_INTEROP_1(IsTSUnknownKeyword, KBoolean, KNativePointer);
|
|
1069
|
+
|
|
1070
|
+
KBoolean impl_IsTSObjectKeyword(KNativePointer ast)
|
|
1071
|
+
{
|
|
1072
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1073
|
+
auto result = GetImpl()->IsTSObjectKeyword(_ast);
|
|
1074
|
+
return result;
|
|
1075
|
+
}
|
|
1076
|
+
KOALA_INTEROP_1(IsTSObjectKeyword, KBoolean, KNativePointer);
|
|
1077
|
+
|
|
1078
|
+
KBoolean impl_IsTSBigintKeyword(KNativePointer ast)
|
|
1079
|
+
{
|
|
1080
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1081
|
+
auto result = GetImpl()->IsTSBigintKeyword(_ast);
|
|
1082
|
+
return result;
|
|
1083
|
+
}
|
|
1084
|
+
KOALA_INTEROP_1(IsTSBigintKeyword, KBoolean, KNativePointer);
|
|
1085
|
+
|
|
1086
|
+
KBoolean impl_IsTSNeverKeyword(KNativePointer ast)
|
|
1087
|
+
{
|
|
1088
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1089
|
+
auto result = GetImpl()->IsTSNeverKeyword(_ast);
|
|
1090
|
+
return result;
|
|
1091
|
+
}
|
|
1092
|
+
KOALA_INTEROP_1(IsTSNeverKeyword, KBoolean, KNativePointer);
|
|
1093
|
+
|
|
1094
|
+
KBoolean impl_IsTSNonNullExpression(KNativePointer ast)
|
|
1095
|
+
{
|
|
1096
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1097
|
+
auto result = GetImpl()->IsTSNonNullExpression(_ast);
|
|
1098
|
+
return result;
|
|
1099
|
+
}
|
|
1100
|
+
KOALA_INTEROP_1(IsTSNonNullExpression, KBoolean, KNativePointer);
|
|
1101
|
+
|
|
1102
|
+
KBoolean impl_IsTSNullKeyword(KNativePointer ast)
|
|
1103
|
+
{
|
|
1104
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1105
|
+
auto result = GetImpl()->IsTSNullKeyword(_ast);
|
|
1106
|
+
return result;
|
|
1107
|
+
}
|
|
1108
|
+
KOALA_INTEROP_1(IsTSNullKeyword, KBoolean, KNativePointer);
|
|
1109
|
+
|
|
1110
|
+
KBoolean impl_IsTSArrayType(KNativePointer ast)
|
|
1111
|
+
{
|
|
1112
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1113
|
+
auto result = GetImpl()->IsTSArrayType(_ast);
|
|
1114
|
+
return result;
|
|
1115
|
+
}
|
|
1116
|
+
KOALA_INTEROP_1(IsTSArrayType, KBoolean, KNativePointer);
|
|
1117
|
+
|
|
1118
|
+
KBoolean impl_IsTSUnionType(KNativePointer ast)
|
|
1119
|
+
{
|
|
1120
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1121
|
+
auto result = GetImpl()->IsTSUnionType(_ast);
|
|
1122
|
+
return result;
|
|
1123
|
+
}
|
|
1124
|
+
KOALA_INTEROP_1(IsTSUnionType, KBoolean, KNativePointer);
|
|
1125
|
+
|
|
1126
|
+
KBoolean impl_IsTSTypeLiteral(KNativePointer ast)
|
|
1127
|
+
{
|
|
1128
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1129
|
+
auto result = GetImpl()->IsTSTypeLiteral(_ast);
|
|
1130
|
+
return result;
|
|
1131
|
+
}
|
|
1132
|
+
KOALA_INTEROP_1(IsTSTypeLiteral, KBoolean, KNativePointer);
|
|
1133
|
+
|
|
1134
|
+
KBoolean impl_IsTSPropertySignature(KNativePointer ast)
|
|
1135
|
+
{
|
|
1136
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1137
|
+
auto result = GetImpl()->IsTSPropertySignature(_ast);
|
|
1138
|
+
return result;
|
|
1139
|
+
}
|
|
1140
|
+
KOALA_INTEROP_1(IsTSPropertySignature, KBoolean, KNativePointer);
|
|
1141
|
+
|
|
1142
|
+
KBoolean impl_IsTSMethodSignature(KNativePointer ast)
|
|
1143
|
+
{
|
|
1144
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1145
|
+
auto result = GetImpl()->IsTSMethodSignature(_ast);
|
|
1146
|
+
return result;
|
|
1147
|
+
}
|
|
1148
|
+
KOALA_INTEROP_1(IsTSMethodSignature, KBoolean, KNativePointer);
|
|
1149
|
+
|
|
1150
|
+
KBoolean impl_IsTSSignatureDeclaration(KNativePointer ast)
|
|
1151
|
+
{
|
|
1152
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1153
|
+
auto result = GetImpl()->IsTSSignatureDeclaration(_ast);
|
|
1154
|
+
return result;
|
|
1155
|
+
}
|
|
1156
|
+
KOALA_INTEROP_1(IsTSSignatureDeclaration, KBoolean, KNativePointer);
|
|
1157
|
+
|
|
1158
|
+
KBoolean impl_IsTSParenthesizedType(KNativePointer ast)
|
|
1159
|
+
{
|
|
1160
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1161
|
+
auto result = GetImpl()->IsTSParenthesizedType(_ast);
|
|
1162
|
+
return result;
|
|
1163
|
+
}
|
|
1164
|
+
KOALA_INTEROP_1(IsTSParenthesizedType, KBoolean, KNativePointer);
|
|
1165
|
+
|
|
1166
|
+
KBoolean impl_IsTSLiteralType(KNativePointer ast)
|
|
1167
|
+
{
|
|
1168
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1169
|
+
auto result = GetImpl()->IsTSLiteralType(_ast);
|
|
1170
|
+
return result;
|
|
1171
|
+
}
|
|
1172
|
+
KOALA_INTEROP_1(IsTSLiteralType, KBoolean, KNativePointer);
|
|
1173
|
+
|
|
1174
|
+
KBoolean impl_IsTSInferType(KNativePointer ast)
|
|
1175
|
+
{
|
|
1176
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1177
|
+
auto result = GetImpl()->IsTSInferType(_ast);
|
|
1178
|
+
return result;
|
|
1179
|
+
}
|
|
1180
|
+
KOALA_INTEROP_1(IsTSInferType, KBoolean, KNativePointer);
|
|
1181
|
+
|
|
1182
|
+
KBoolean impl_IsTSConditionalType(KNativePointer ast)
|
|
1183
|
+
{
|
|
1184
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1185
|
+
auto result = GetImpl()->IsTSConditionalType(_ast);
|
|
1186
|
+
return result;
|
|
1187
|
+
}
|
|
1188
|
+
KOALA_INTEROP_1(IsTSConditionalType, KBoolean, KNativePointer);
|
|
1189
|
+
|
|
1190
|
+
KBoolean impl_IsTSImportType(KNativePointer ast)
|
|
1191
|
+
{
|
|
1192
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1193
|
+
auto result = GetImpl()->IsTSImportType(_ast);
|
|
1194
|
+
return result;
|
|
1195
|
+
}
|
|
1196
|
+
KOALA_INTEROP_1(IsTSImportType, KBoolean, KNativePointer);
|
|
1197
|
+
|
|
1198
|
+
KBoolean impl_IsTSIntersectionType(KNativePointer ast)
|
|
1199
|
+
{
|
|
1200
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1201
|
+
auto result = GetImpl()->IsTSIntersectionType(_ast);
|
|
1202
|
+
return result;
|
|
1203
|
+
}
|
|
1204
|
+
KOALA_INTEROP_1(IsTSIntersectionType, KBoolean, KNativePointer);
|
|
1205
|
+
|
|
1206
|
+
KBoolean impl_IsTSMappedType(KNativePointer ast)
|
|
1207
|
+
{
|
|
1208
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1209
|
+
auto result = GetImpl()->IsTSMappedType(_ast);
|
|
1210
|
+
return result;
|
|
1211
|
+
}
|
|
1212
|
+
KOALA_INTEROP_1(IsTSMappedType, KBoolean, KNativePointer);
|
|
1213
|
+
|
|
1214
|
+
KBoolean impl_IsTSModuleBlock(KNativePointer ast)
|
|
1215
|
+
{
|
|
1216
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1217
|
+
auto result = GetImpl()->IsTSModuleBlock(_ast);
|
|
1218
|
+
return result;
|
|
1219
|
+
}
|
|
1220
|
+
KOALA_INTEROP_1(IsTSModuleBlock, KBoolean, KNativePointer);
|
|
1221
|
+
|
|
1222
|
+
KBoolean impl_IsTSThisType(KNativePointer ast)
|
|
1223
|
+
{
|
|
1224
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1225
|
+
auto result = GetImpl()->IsTSThisType(_ast);
|
|
1226
|
+
return result;
|
|
1227
|
+
}
|
|
1228
|
+
KOALA_INTEROP_1(IsTSThisType, KBoolean, KNativePointer);
|
|
1229
|
+
|
|
1230
|
+
KBoolean impl_IsTSTypeOperator(KNativePointer ast)
|
|
1231
|
+
{
|
|
1232
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1233
|
+
auto result = GetImpl()->IsTSTypeOperator(_ast);
|
|
1234
|
+
return result;
|
|
1235
|
+
}
|
|
1236
|
+
KOALA_INTEROP_1(IsTSTypeOperator, KBoolean, KNativePointer);
|
|
1237
|
+
|
|
1238
|
+
KBoolean impl_IsTSTypeParameter(KNativePointer ast)
|
|
1239
|
+
{
|
|
1240
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1241
|
+
auto result = GetImpl()->IsTSTypeParameter(_ast);
|
|
1242
|
+
return result;
|
|
1243
|
+
}
|
|
1244
|
+
KOALA_INTEROP_1(IsTSTypeParameter, KBoolean, KNativePointer);
|
|
1245
|
+
|
|
1246
|
+
KBoolean impl_IsTSTypeParameterDeclaration(KNativePointer ast)
|
|
1247
|
+
{
|
|
1248
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1249
|
+
auto result = GetImpl()->IsTSTypeParameterDeclaration(_ast);
|
|
1250
|
+
return result;
|
|
1251
|
+
}
|
|
1252
|
+
KOALA_INTEROP_1(IsTSTypeParameterDeclaration, KBoolean, KNativePointer);
|
|
1253
|
+
|
|
1254
|
+
KBoolean impl_IsTSTypeParameterInstantiation(KNativePointer ast)
|
|
1255
|
+
{
|
|
1256
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1257
|
+
auto result = GetImpl()->IsTSTypeParameterInstantiation(_ast);
|
|
1258
|
+
return result;
|
|
1259
|
+
}
|
|
1260
|
+
KOALA_INTEROP_1(IsTSTypeParameterInstantiation, KBoolean, KNativePointer);
|
|
1261
|
+
|
|
1262
|
+
KBoolean impl_IsTSTypePredicate(KNativePointer ast)
|
|
1263
|
+
{
|
|
1264
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1265
|
+
auto result = GetImpl()->IsTSTypePredicate(_ast);
|
|
1266
|
+
return result;
|
|
1267
|
+
}
|
|
1268
|
+
KOALA_INTEROP_1(IsTSTypePredicate, KBoolean, KNativePointer);
|
|
1269
|
+
|
|
1270
|
+
KBoolean impl_IsTSParameterProperty(KNativePointer ast)
|
|
1271
|
+
{
|
|
1272
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1273
|
+
auto result = GetImpl()->IsTSParameterProperty(_ast);
|
|
1274
|
+
return result;
|
|
1275
|
+
}
|
|
1276
|
+
KOALA_INTEROP_1(IsTSParameterProperty, KBoolean, KNativePointer);
|
|
1277
|
+
|
|
1278
|
+
KBoolean impl_IsTSModuleDeclaration(KNativePointer ast)
|
|
1279
|
+
{
|
|
1280
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1281
|
+
auto result = GetImpl()->IsTSModuleDeclaration(_ast);
|
|
1282
|
+
return result;
|
|
1283
|
+
}
|
|
1284
|
+
KOALA_INTEROP_1(IsTSModuleDeclaration, KBoolean, KNativePointer);
|
|
1285
|
+
|
|
1286
|
+
KBoolean impl_IsTSImportEqualsDeclaration(KNativePointer ast)
|
|
1287
|
+
{
|
|
1288
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1289
|
+
auto result = GetImpl()->IsTSImportEqualsDeclaration(_ast);
|
|
1290
|
+
return result;
|
|
1291
|
+
}
|
|
1292
|
+
KOALA_INTEROP_1(IsTSImportEqualsDeclaration, KBoolean, KNativePointer);
|
|
1293
|
+
|
|
1294
|
+
KBoolean impl_IsTSFunctionType(KNativePointer ast)
|
|
1295
|
+
{
|
|
1296
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1297
|
+
auto result = GetImpl()->IsTSFunctionType(_ast);
|
|
1298
|
+
return result;
|
|
1299
|
+
}
|
|
1300
|
+
KOALA_INTEROP_1(IsTSFunctionType, KBoolean, KNativePointer);
|
|
1301
|
+
|
|
1302
|
+
KBoolean impl_IsTSConstructorType(KNativePointer ast)
|
|
1303
|
+
{
|
|
1304
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1305
|
+
auto result = GetImpl()->IsTSConstructorType(_ast);
|
|
1306
|
+
return result;
|
|
1307
|
+
}
|
|
1308
|
+
KOALA_INTEROP_1(IsTSConstructorType, KBoolean, KNativePointer);
|
|
1309
|
+
|
|
1310
|
+
KBoolean impl_IsTSTypeAliasDeclaration(KNativePointer ast)
|
|
1311
|
+
{
|
|
1312
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1313
|
+
auto result = GetImpl()->IsTSTypeAliasDeclaration(_ast);
|
|
1314
|
+
return result;
|
|
1315
|
+
}
|
|
1316
|
+
KOALA_INTEROP_1(IsTSTypeAliasDeclaration, KBoolean, KNativePointer);
|
|
1317
|
+
|
|
1318
|
+
KBoolean impl_IsTSTypeReference(KNativePointer ast)
|
|
1319
|
+
{
|
|
1320
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1321
|
+
auto result = GetImpl()->IsTSTypeReference(_ast);
|
|
1322
|
+
return result;
|
|
1323
|
+
}
|
|
1324
|
+
KOALA_INTEROP_1(IsTSTypeReference, KBoolean, KNativePointer);
|
|
1325
|
+
|
|
1326
|
+
KBoolean impl_IsTSQualifiedName(KNativePointer ast)
|
|
1327
|
+
{
|
|
1328
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1329
|
+
auto result = GetImpl()->IsTSQualifiedName(_ast);
|
|
1330
|
+
return result;
|
|
1331
|
+
}
|
|
1332
|
+
KOALA_INTEROP_1(IsTSQualifiedName, KBoolean, KNativePointer);
|
|
1333
|
+
|
|
1334
|
+
KBoolean impl_IsTSIndexedAccessType(KNativePointer ast)
|
|
1335
|
+
{
|
|
1336
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1337
|
+
auto result = GetImpl()->IsTSIndexedAccessType(_ast);
|
|
1338
|
+
return result;
|
|
1339
|
+
}
|
|
1340
|
+
KOALA_INTEROP_1(IsTSIndexedAccessType, KBoolean, KNativePointer);
|
|
1341
|
+
|
|
1342
|
+
KBoolean impl_IsTSInterfaceDeclaration(KNativePointer ast)
|
|
1343
|
+
{
|
|
1344
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1345
|
+
auto result = GetImpl()->IsTSInterfaceDeclaration(_ast);
|
|
1346
|
+
return result;
|
|
1347
|
+
}
|
|
1348
|
+
KOALA_INTEROP_1(IsTSInterfaceDeclaration, KBoolean, KNativePointer);
|
|
1349
|
+
|
|
1350
|
+
KBoolean impl_IsTSInterfaceBody(KNativePointer ast)
|
|
1351
|
+
{
|
|
1352
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1353
|
+
auto result = GetImpl()->IsTSInterfaceBody(_ast);
|
|
1354
|
+
return result;
|
|
1355
|
+
}
|
|
1356
|
+
KOALA_INTEROP_1(IsTSInterfaceBody, KBoolean, KNativePointer);
|
|
1357
|
+
|
|
1358
|
+
KBoolean impl_IsTSInterfaceHeritage(KNativePointer ast)
|
|
1359
|
+
{
|
|
1360
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1361
|
+
auto result = GetImpl()->IsTSInterfaceHeritage(_ast);
|
|
1362
|
+
return result;
|
|
1363
|
+
}
|
|
1364
|
+
KOALA_INTEROP_1(IsTSInterfaceHeritage, KBoolean, KNativePointer);
|
|
1365
|
+
|
|
1366
|
+
KBoolean impl_IsTSTupleType(KNativePointer ast)
|
|
1367
|
+
{
|
|
1368
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1369
|
+
auto result = GetImpl()->IsTSTupleType(_ast);
|
|
1370
|
+
return result;
|
|
1371
|
+
}
|
|
1372
|
+
KOALA_INTEROP_1(IsTSTupleType, KBoolean, KNativePointer);
|
|
1373
|
+
|
|
1374
|
+
KBoolean impl_IsTSNamedTupleMember(KNativePointer ast)
|
|
1375
|
+
{
|
|
1376
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1377
|
+
auto result = GetImpl()->IsTSNamedTupleMember(_ast);
|
|
1378
|
+
return result;
|
|
1379
|
+
}
|
|
1380
|
+
KOALA_INTEROP_1(IsTSNamedTupleMember, KBoolean, KNativePointer);
|
|
1381
|
+
|
|
1382
|
+
KBoolean impl_IsTSIndexSignature(KNativePointer ast)
|
|
1383
|
+
{
|
|
1384
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1385
|
+
auto result = GetImpl()->IsTSIndexSignature(_ast);
|
|
1386
|
+
return result;
|
|
1387
|
+
}
|
|
1388
|
+
KOALA_INTEROP_1(IsTSIndexSignature, KBoolean, KNativePointer);
|
|
1389
|
+
|
|
1390
|
+
KBoolean impl_IsTSTypeQuery(KNativePointer ast)
|
|
1391
|
+
{
|
|
1392
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1393
|
+
auto result = GetImpl()->IsTSTypeQuery(_ast);
|
|
1394
|
+
return result;
|
|
1395
|
+
}
|
|
1396
|
+
KOALA_INTEROP_1(IsTSTypeQuery, KBoolean, KNativePointer);
|
|
1397
|
+
|
|
1398
|
+
KBoolean impl_IsTSAsExpression(KNativePointer ast)
|
|
1399
|
+
{
|
|
1400
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1401
|
+
auto result = GetImpl()->IsTSAsExpression(_ast);
|
|
1402
|
+
return result;
|
|
1403
|
+
}
|
|
1404
|
+
KOALA_INTEROP_1(IsTSAsExpression, KBoolean, KNativePointer);
|
|
1405
|
+
|
|
1406
|
+
KBoolean impl_IsTSClassImplements(KNativePointer ast)
|
|
1407
|
+
{
|
|
1408
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1409
|
+
auto result = GetImpl()->IsTSClassImplements(_ast);
|
|
1410
|
+
return result;
|
|
1411
|
+
}
|
|
1412
|
+
KOALA_INTEROP_1(IsTSClassImplements, KBoolean, KNativePointer);
|
|
1413
|
+
|
|
1414
|
+
KBoolean impl_IsTSTypeAssertion(KNativePointer ast)
|
|
1415
|
+
{
|
|
1416
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1417
|
+
auto result = GetImpl()->IsTSTypeAssertion(_ast);
|
|
1418
|
+
return result;
|
|
1419
|
+
}
|
|
1420
|
+
KOALA_INTEROP_1(IsTSTypeAssertion, KBoolean, KNativePointer);
|
|
1421
|
+
|
|
1422
|
+
KBoolean impl_IsTaggedTemplateExpression(KNativePointer ast)
|
|
1423
|
+
{
|
|
1424
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1425
|
+
auto result = GetImpl()->IsTaggedTemplateExpression(_ast);
|
|
1426
|
+
return result;
|
|
1427
|
+
}
|
|
1428
|
+
KOALA_INTEROP_1(IsTaggedTemplateExpression, KBoolean, KNativePointer);
|
|
1429
|
+
|
|
1430
|
+
KBoolean impl_IsTemplateElement(KNativePointer ast)
|
|
1431
|
+
{
|
|
1432
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1433
|
+
auto result = GetImpl()->IsTemplateElement(_ast);
|
|
1434
|
+
return result;
|
|
1435
|
+
}
|
|
1436
|
+
KOALA_INTEROP_1(IsTemplateElement, KBoolean, KNativePointer);
|
|
1437
|
+
|
|
1438
|
+
KBoolean impl_IsTemplateLiteral(KNativePointer ast)
|
|
1439
|
+
{
|
|
1440
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1441
|
+
auto result = GetImpl()->IsTemplateLiteral(_ast);
|
|
1442
|
+
return result;
|
|
1443
|
+
}
|
|
1444
|
+
KOALA_INTEROP_1(IsTemplateLiteral, KBoolean, KNativePointer);
|
|
1445
|
+
|
|
1446
|
+
KBoolean impl_IsThisExpression(KNativePointer ast)
|
|
1447
|
+
{
|
|
1448
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1449
|
+
auto result = GetImpl()->IsThisExpression(_ast);
|
|
1450
|
+
return result;
|
|
1451
|
+
}
|
|
1452
|
+
KOALA_INTEROP_1(IsThisExpression, KBoolean, KNativePointer);
|
|
1453
|
+
|
|
1454
|
+
KBoolean impl_IsTypeofExpression(KNativePointer ast)
|
|
1455
|
+
{
|
|
1456
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1457
|
+
auto result = GetImpl()->IsTypeofExpression(_ast);
|
|
1458
|
+
return result;
|
|
1459
|
+
}
|
|
1460
|
+
KOALA_INTEROP_1(IsTypeofExpression, KBoolean, KNativePointer);
|
|
1461
|
+
|
|
1462
|
+
KBoolean impl_IsThrowStatement(KNativePointer ast)
|
|
1463
|
+
{
|
|
1464
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1465
|
+
auto result = GetImpl()->IsThrowStatement(_ast);
|
|
1466
|
+
return result;
|
|
1467
|
+
}
|
|
1468
|
+
KOALA_INTEROP_1(IsThrowStatement, KBoolean, KNativePointer);
|
|
1469
|
+
|
|
1470
|
+
KBoolean impl_IsTryStatement(KNativePointer ast)
|
|
1471
|
+
{
|
|
1472
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1473
|
+
auto result = GetImpl()->IsTryStatement(_ast);
|
|
1474
|
+
return result;
|
|
1475
|
+
}
|
|
1476
|
+
KOALA_INTEROP_1(IsTryStatement, KBoolean, KNativePointer);
|
|
1477
|
+
|
|
1478
|
+
KBoolean impl_IsUnaryExpression(KNativePointer ast)
|
|
1479
|
+
{
|
|
1480
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1481
|
+
auto result = GetImpl()->IsUnaryExpression(_ast);
|
|
1482
|
+
return result;
|
|
1483
|
+
}
|
|
1484
|
+
KOALA_INTEROP_1(IsUnaryExpression, KBoolean, KNativePointer);
|
|
1485
|
+
|
|
1486
|
+
KBoolean impl_IsUpdateExpression(KNativePointer ast)
|
|
1487
|
+
{
|
|
1488
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1489
|
+
auto result = GetImpl()->IsUpdateExpression(_ast);
|
|
1490
|
+
return result;
|
|
1491
|
+
}
|
|
1492
|
+
KOALA_INTEROP_1(IsUpdateExpression, KBoolean, KNativePointer);
|
|
1493
|
+
|
|
1494
|
+
KBoolean impl_IsVariableDeclaration(KNativePointer ast)
|
|
1495
|
+
{
|
|
1496
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1497
|
+
auto result = GetImpl()->IsVariableDeclaration(_ast);
|
|
1498
|
+
return result;
|
|
1499
|
+
}
|
|
1500
|
+
KOALA_INTEROP_1(IsVariableDeclaration, KBoolean, KNativePointer);
|
|
1501
|
+
|
|
1502
|
+
KBoolean impl_IsVariableDeclarator(KNativePointer ast)
|
|
1503
|
+
{
|
|
1504
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1505
|
+
auto result = GetImpl()->IsVariableDeclarator(_ast);
|
|
1506
|
+
return result;
|
|
1507
|
+
}
|
|
1508
|
+
KOALA_INTEROP_1(IsVariableDeclarator, KBoolean, KNativePointer);
|
|
1509
|
+
|
|
1510
|
+
KBoolean impl_IsWhileStatement(KNativePointer ast)
|
|
1511
|
+
{
|
|
1512
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1513
|
+
auto result = GetImpl()->IsWhileStatement(_ast);
|
|
1514
|
+
return result;
|
|
1515
|
+
}
|
|
1516
|
+
KOALA_INTEROP_1(IsWhileStatement, KBoolean, KNativePointer);
|
|
1517
|
+
|
|
1518
|
+
KBoolean impl_IsYieldExpression(KNativePointer ast)
|
|
1519
|
+
{
|
|
1520
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1521
|
+
auto result = GetImpl()->IsYieldExpression(_ast);
|
|
1522
|
+
return result;
|
|
1523
|
+
}
|
|
1524
|
+
KOALA_INTEROP_1(IsYieldExpression, KBoolean, KNativePointer);
|
|
1525
|
+
|
|
1526
|
+
KBoolean impl_IsOpaqueTypeNode(KNativePointer ast)
|
|
1527
|
+
{
|
|
1528
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1529
|
+
auto result = GetImpl()->IsOpaqueTypeNode(_ast);
|
|
1530
|
+
return result;
|
|
1531
|
+
}
|
|
1532
|
+
KOALA_INTEROP_1(IsOpaqueTypeNode, KBoolean, KNativePointer);
|
|
1533
|
+
|
|
1534
|
+
KBoolean impl_IsBlockExpression(KNativePointer ast)
|
|
1535
|
+
{
|
|
1536
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1537
|
+
auto result = GetImpl()->IsBlockExpression(_ast);
|
|
1538
|
+
return result;
|
|
1539
|
+
}
|
|
1540
|
+
KOALA_INTEROP_1(IsBlockExpression, KBoolean, KNativePointer);
|
|
1541
|
+
|
|
1542
|
+
KBoolean impl_IsBrokenTypeNode(KNativePointer ast)
|
|
1543
|
+
{
|
|
1544
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1545
|
+
auto result = GetImpl()->IsBrokenTypeNode(_ast);
|
|
1546
|
+
return result;
|
|
1547
|
+
}
|
|
1548
|
+
KOALA_INTEROP_1(IsBrokenTypeNode, KBoolean, KNativePointer);
|
|
1549
|
+
|
|
1550
|
+
KBoolean impl_IsArrayExpression(KNativePointer ast)
|
|
1551
|
+
{
|
|
1552
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1553
|
+
auto result = GetImpl()->IsArrayExpression(_ast);
|
|
1554
|
+
return result;
|
|
1555
|
+
}
|
|
1556
|
+
KOALA_INTEROP_1(IsArrayExpression, KBoolean, KNativePointer);
|
|
1557
|
+
|
|
1558
|
+
KBoolean impl_IsArrayPattern(KNativePointer ast)
|
|
1559
|
+
{
|
|
1560
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1561
|
+
auto result = GetImpl()->IsArrayPattern(_ast);
|
|
1562
|
+
return result;
|
|
1563
|
+
}
|
|
1564
|
+
KOALA_INTEROP_1(IsArrayPattern, KBoolean, KNativePointer);
|
|
1565
|
+
|
|
1566
|
+
KBoolean impl_IsAssignmentExpression(KNativePointer ast)
|
|
1567
|
+
{
|
|
1568
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1569
|
+
auto result = GetImpl()->IsAssignmentExpression(_ast);
|
|
1570
|
+
return result;
|
|
1571
|
+
}
|
|
1572
|
+
KOALA_INTEROP_1(IsAssignmentExpression, KBoolean, KNativePointer);
|
|
1573
|
+
|
|
1574
|
+
KBoolean impl_IsAssignmentPattern(KNativePointer ast)
|
|
1575
|
+
{
|
|
1576
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1577
|
+
auto result = GetImpl()->IsAssignmentPattern(_ast);
|
|
1578
|
+
return result;
|
|
1579
|
+
}
|
|
1580
|
+
KOALA_INTEROP_1(IsAssignmentPattern, KBoolean, KNativePointer);
|
|
1581
|
+
|
|
1582
|
+
KBoolean impl_IsObjectExpression(KNativePointer ast)
|
|
1583
|
+
{
|
|
1584
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1585
|
+
auto result = GetImpl()->IsObjectExpression(_ast);
|
|
1586
|
+
return result;
|
|
1587
|
+
}
|
|
1588
|
+
KOALA_INTEROP_1(IsObjectExpression, KBoolean, KNativePointer);
|
|
1589
|
+
|
|
1590
|
+
KBoolean impl_IsObjectPattern(KNativePointer ast)
|
|
1591
|
+
{
|
|
1592
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1593
|
+
auto result = GetImpl()->IsObjectPattern(_ast);
|
|
1594
|
+
return result;
|
|
1595
|
+
}
|
|
1596
|
+
KOALA_INTEROP_1(IsObjectPattern, KBoolean, KNativePointer);
|
|
1597
|
+
|
|
1598
|
+
KBoolean impl_IsSpreadElement(KNativePointer ast)
|
|
1599
|
+
{
|
|
1600
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1601
|
+
auto result = GetImpl()->IsSpreadElement(_ast);
|
|
1602
|
+
return result;
|
|
1603
|
+
}
|
|
1604
|
+
KOALA_INTEROP_1(IsSpreadElement, KBoolean, KNativePointer);
|
|
1605
|
+
|
|
1606
|
+
KBoolean impl_IsRestElement(KNativePointer ast)
|
|
1607
|
+
{
|
|
1608
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1609
|
+
auto result = GetImpl()->IsRestElement(_ast);
|
|
1610
|
+
return result;
|
|
1611
|
+
}
|
|
1612
|
+
KOALA_INTEROP_1(IsRestElement, KBoolean, KNativePointer);
|
|
1613
|
+
|
|
1614
|
+
KNativePointer impl_AstNodeName(KNativePointer ast)
|
|
1615
|
+
{
|
|
1616
|
+
const auto _ast = reinterpret_cast<es2panda_AstNode*>(ast);
|
|
1617
|
+
auto result = GetImpl()->AstNodeName(_ast);
|
|
1618
|
+
return StageArena::strdup(result);
|
|
1619
|
+
}
|
|
1620
|
+
KOALA_INTEROP_1(AstNodeName, KNativePointer, KNativePointer);
|
|
1621
|
+
|
|
23
1622
|
KNativePointer impl_CreateNumberLiteral(KNativePointer context, KInt value)
|
|
24
1623
|
{
|
|
25
1624
|
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
@@ -273,15 +1872,32 @@ KBoolean impl_ClassPropertyNeedInitInStaticBlockConst(KNativePointer context, KN
|
|
|
273
1872
|
}
|
|
274
1873
|
KOALA_INTEROP_2(ClassPropertyNeedInitInStaticBlockConst, KBoolean, KNativePointer, KNativePointer);
|
|
275
1874
|
|
|
276
|
-
void
|
|
1875
|
+
void impl_ClassPropertySetNeedInitInStaticBlock(KNativePointer context, KNativePointer receiver)
|
|
1876
|
+
{
|
|
1877
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
1878
|
+
const auto _receiver = reinterpret_cast<es2panda_AstNode*>(receiver);
|
|
1879
|
+
GetImpl()->ClassPropertySetNeedInitInStaticBlock(_context, _receiver);
|
|
1880
|
+
return ;
|
|
1881
|
+
}
|
|
1882
|
+
KOALA_INTEROP_V2(ClassPropertySetNeedInitInStaticBlock, KNativePointer, KNativePointer);
|
|
1883
|
+
|
|
1884
|
+
KBoolean impl_ClassPropertyIsImmediateInitConst(KNativePointer context, KNativePointer receiver)
|
|
1885
|
+
{
|
|
1886
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
1887
|
+
const auto _receiver = reinterpret_cast<es2panda_AstNode*>(receiver);
|
|
1888
|
+
auto result = GetImpl()->ClassPropertyIsImmediateInitConst(_context, _receiver);
|
|
1889
|
+
return result;
|
|
1890
|
+
}
|
|
1891
|
+
KOALA_INTEROP_2(ClassPropertyIsImmediateInitConst, KBoolean, KNativePointer, KNativePointer);
|
|
1892
|
+
|
|
1893
|
+
void impl_ClassPropertySetIsImmediateInit(KNativePointer context, KNativePointer receiver)
|
|
277
1894
|
{
|
|
278
1895
|
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
279
1896
|
const auto _receiver = reinterpret_cast<es2panda_AstNode*>(receiver);
|
|
280
|
-
|
|
281
|
-
GetImpl()->ClassPropertySetInitInStaticBlock(_context, _receiver, _needInitInStaticBlock);
|
|
1897
|
+
GetImpl()->ClassPropertySetIsImmediateInit(_context, _receiver);
|
|
282
1898
|
return ;
|
|
283
1899
|
}
|
|
284
|
-
|
|
1900
|
+
KOALA_INTEROP_V2(ClassPropertySetIsImmediateInit, KNativePointer, KNativePointer);
|
|
285
1901
|
|
|
286
1902
|
void impl_ClassPropertyEmplaceAnnotations(KNativePointer context, KNativePointer receiver, KNativePointer source)
|
|
287
1903
|
{
|
|
@@ -3064,15 +4680,6 @@ void impl_MemberExpressionRemoveMemberKind(KNativePointer context, KNativePointe
|
|
|
3064
4680
|
}
|
|
3065
4681
|
KOALA_INTEROP_V3(MemberExpressionRemoveMemberKind, KNativePointer, KNativePointer, KInt);
|
|
3066
4682
|
|
|
3067
|
-
KNativePointer impl_MemberExpressionExtensionAccessorTypeConst(KNativePointer context, KNativePointer receiver)
|
|
3068
|
-
{
|
|
3069
|
-
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
3070
|
-
const auto _receiver = reinterpret_cast<es2panda_AstNode*>(receiver);
|
|
3071
|
-
auto result = GetImpl()->MemberExpressionExtensionAccessorTypeConst(_context, _receiver);
|
|
3072
|
-
return (void*)result;
|
|
3073
|
-
}
|
|
3074
|
-
KOALA_INTEROP_2(MemberExpressionExtensionAccessorTypeConst, KNativePointer, KNativePointer, KNativePointer);
|
|
3075
|
-
|
|
3076
4683
|
KBoolean impl_MemberExpressionIsIgnoreBoxConst(KNativePointer context, KNativePointer receiver)
|
|
3077
4684
|
{
|
|
3078
4685
|
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
@@ -6294,6 +7901,16 @@ void impl_AstNodeSetRange(KNativePointer context, KNativePointer receiver, KNati
|
|
|
6294
7901
|
}
|
|
6295
7902
|
KOALA_INTEROP_V3(AstNodeSetRange, KNativePointer, KNativePointer, KNativePointer);
|
|
6296
7903
|
|
|
7904
|
+
void impl_AstNodeSetProgram(KNativePointer context, KNativePointer receiver, KNativePointer program)
|
|
7905
|
+
{
|
|
7906
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
7907
|
+
const auto _receiver = reinterpret_cast<es2panda_AstNode*>(receiver);
|
|
7908
|
+
const auto _program = reinterpret_cast<es2panda_Program*>(program);
|
|
7909
|
+
GetImpl()->AstNodeSetProgram(_context, _receiver, _program);
|
|
7910
|
+
return ;
|
|
7911
|
+
}
|
|
7912
|
+
KOALA_INTEROP_V3(AstNodeSetProgram, KNativePointer, KNativePointer, KNativePointer);
|
|
7913
|
+
|
|
6297
7914
|
void impl_AstNodeSetStart(KNativePointer context, KNativePointer receiver, KNativePointer start)
|
|
6298
7915
|
{
|
|
6299
7916
|
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
@@ -6314,6 +7931,15 @@ void impl_AstNodeSetEnd(KNativePointer context, KNativePointer receiver, KNative
|
|
|
6314
7931
|
}
|
|
6315
7932
|
KOALA_INTEROP_V3(AstNodeSetEnd, KNativePointer, KNativePointer, KNativePointer);
|
|
6316
7933
|
|
|
7934
|
+
KNativePointer impl_AstNodeProgramConst(KNativePointer context, KNativePointer receiver)
|
|
7935
|
+
{
|
|
7936
|
+
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
7937
|
+
const auto _receiver = reinterpret_cast<es2panda_AstNode*>(receiver);
|
|
7938
|
+
auto result = GetImpl()->AstNodeProgramConst(_context, _receiver);
|
|
7939
|
+
return (void*)result;
|
|
7940
|
+
}
|
|
7941
|
+
KOALA_INTEROP_2(AstNodeProgramConst, KNativePointer, KNativePointer, KNativePointer);
|
|
7942
|
+
|
|
6317
7943
|
KNativePointer impl_AstNodeStartConst(KNativePointer context, KNativePointer receiver)
|
|
6318
7944
|
{
|
|
6319
7945
|
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
@@ -14595,35 +16221,6 @@ KNativePointer impl_UpdateTSThisType(KNativePointer context, KNativePointer orig
|
|
|
14595
16221
|
}
|
|
14596
16222
|
KOALA_INTEROP_2(UpdateTSThisType, KNativePointer, KNativePointer, KNativePointer);
|
|
14597
16223
|
|
|
14598
|
-
KNativePointer impl_CreateInterfaceDecl(KNativePointer context, KStringPtr& name)
|
|
14599
|
-
{
|
|
14600
|
-
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
14601
|
-
const auto _name = getStringCopy(name);
|
|
14602
|
-
auto result = GetImpl()->CreateInterfaceDecl(_context, _name);
|
|
14603
|
-
return result;
|
|
14604
|
-
}
|
|
14605
|
-
KOALA_INTEROP_2(CreateInterfaceDecl, KNativePointer, KNativePointer, KStringPtr);
|
|
14606
|
-
|
|
14607
|
-
KNativePointer impl_CreateInterfaceDecl1(KNativePointer context, KStringPtr& name, KNativePointer declNode)
|
|
14608
|
-
{
|
|
14609
|
-
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
14610
|
-
const auto _name = getStringCopy(name);
|
|
14611
|
-
const auto _declNode = reinterpret_cast<es2panda_AstNode*>(declNode);
|
|
14612
|
-
auto result = GetImpl()->CreateInterfaceDecl1(_context, _name, _declNode);
|
|
14613
|
-
return result;
|
|
14614
|
-
}
|
|
14615
|
-
KOALA_INTEROP_3(CreateInterfaceDecl1, KNativePointer, KNativePointer, KStringPtr, KNativePointer);
|
|
14616
|
-
|
|
14617
|
-
KNativePointer impl_CreateFunctionDecl(KNativePointer context, KStringPtr& name, KNativePointer node)
|
|
14618
|
-
{
|
|
14619
|
-
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|
|
14620
|
-
const auto _name = getStringCopy(name);
|
|
14621
|
-
const auto _node = reinterpret_cast<es2panda_AstNode*>(node);
|
|
14622
|
-
auto result = GetImpl()->CreateFunctionDecl(_context, _name, _node);
|
|
14623
|
-
return result;
|
|
14624
|
-
}
|
|
14625
|
-
KOALA_INTEROP_3(CreateFunctionDecl, KNativePointer, KNativePointer, KStringPtr, KNativePointer);
|
|
14626
|
-
|
|
14627
16224
|
void impl_ProgramSetKind(KNativePointer context, KNativePointer receiver, KInt kind)
|
|
14628
16225
|
{
|
|
14629
16226
|
const auto _context = reinterpret_cast<es2panda_Context*>(context);
|