@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
|
@@ -750,6 +750,11 @@ export enum Es2pandaTSSignatureDeclarationKind {
|
|
|
750
750
|
TS_SIGNATURE_DECLARATION_KIND_CALL_SIGNATURE = 0,
|
|
751
751
|
TS_SIGNATURE_DECLARATION_KIND_CONSTRUCT_SIGNATURE = 1
|
|
752
752
|
}
|
|
753
|
+
export enum Es2pandaInitMode {
|
|
754
|
+
INIT_MODE_NONE = 0,
|
|
755
|
+
INIT_MODE_IMMEDIATE_INIT = 1,
|
|
756
|
+
INIT_MODE_NEED_INIT_IN_STATIC_BLOCK = 2
|
|
757
|
+
}
|
|
753
758
|
export enum Es2pandaTSIndexSignatureKind {
|
|
754
759
|
TS_INDEX_SIGNATURE_KIND_NUMBER = 0,
|
|
755
760
|
TS_INDEX_SIGNATURE_KIND_STRING = 1
|
|
@@ -32,6 +32,594 @@ import {
|
|
|
32
32
|
export type KNativePointerArray = BigUint64Array
|
|
33
33
|
|
|
34
34
|
export class Es2pandaNativeModule {
|
|
35
|
+
_GetAllErrorMessages(context: KNativePointer): KStringPtr {
|
|
36
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
37
|
+
}
|
|
38
|
+
_ProceedToState(context: KNativePointer, state: KInt): KNativePointer {
|
|
39
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
40
|
+
}
|
|
41
|
+
_ContextState(context: KNativePointer): KInt {
|
|
42
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
43
|
+
}
|
|
44
|
+
_ContextErrorMessage(context: KNativePointer): KStringPtr {
|
|
45
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
46
|
+
}
|
|
47
|
+
_ContextProgram(context: KNativePointer): KNativePointer {
|
|
48
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
49
|
+
}
|
|
50
|
+
_CreateSourcePosition(context: KNativePointer, index: KUInt, line: KUInt): KNativePointer {
|
|
51
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
52
|
+
}
|
|
53
|
+
_CreateSourceRange(context: KNativePointer, start: KNativePointer, end: KNativePointer): KNativePointer {
|
|
54
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
55
|
+
}
|
|
56
|
+
_SourcePositionIndex(context: KNativePointer, position: KNativePointer): KUInt {
|
|
57
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
58
|
+
}
|
|
59
|
+
_SourcePositionLine(context: KNativePointer, position: KNativePointer): KUInt {
|
|
60
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
61
|
+
}
|
|
62
|
+
_SourceRangeStart(context: KNativePointer, range: KNativePointer): KNativePointer {
|
|
63
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
64
|
+
}
|
|
65
|
+
_SourceRangeEnd(context: KNativePointer, range: KNativePointer): KNativePointer {
|
|
66
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
67
|
+
}
|
|
68
|
+
_LogDiagnosticWithSuggestion(context: KNativePointer, diagnosticInfo: KNativePointer, suggestionInfo: KNativePointer): void {
|
|
69
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
70
|
+
}
|
|
71
|
+
_IsAnyError(context: KNativePointer): KBoolean {
|
|
72
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
73
|
+
}
|
|
74
|
+
_AstNodeRecheck(context: KNativePointer, node: KNativePointer): void {
|
|
75
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
76
|
+
}
|
|
77
|
+
_Es2pandaEnumFromString(context: KNativePointer, str: KStringPtr): KInt {
|
|
78
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
79
|
+
}
|
|
80
|
+
_Es2pandaEnumToString(context: KNativePointer, id: KInt): KStringPtr {
|
|
81
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
82
|
+
}
|
|
83
|
+
_DeclarationFromIdentifier(context: KNativePointer, node: KNativePointer): KNativePointer {
|
|
84
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
85
|
+
}
|
|
86
|
+
_IsImportTypeKind(context: KNativePointer, node: KNativePointer): KBoolean {
|
|
87
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
88
|
+
}
|
|
89
|
+
_JsdocStringFromDeclaration(context: KNativePointer, node: KNativePointer): KStringPtr {
|
|
90
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
91
|
+
}
|
|
92
|
+
_GetLicenseFromRootNode(context: KNativePointer, node: KNativePointer): KStringPtr {
|
|
93
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
94
|
+
}
|
|
95
|
+
_FirstDeclarationByNameFromNode(context: KNativePointer, node: KNativePointer, name: KStringPtr): KNativePointer {
|
|
96
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
97
|
+
}
|
|
98
|
+
_FirstDeclarationByNameFromProgram(context: KNativePointer, program: KNativePointer, name: KStringPtr): KNativePointer {
|
|
99
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
100
|
+
}
|
|
101
|
+
_AllDeclarationsByNameFromNode(context: KNativePointer, node: KNativePointer, name: KStringPtr): KNativePointer {
|
|
102
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
103
|
+
}
|
|
104
|
+
_AllDeclarationsByNameFromProgram(context: KNativePointer, program: KNativePointer, name: KStringPtr): KNativePointer {
|
|
105
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
106
|
+
}
|
|
107
|
+
_InsertETSImportDeclarationAndParse(context: KNativePointer, program: KNativePointer, node: KNativePointer): void {
|
|
108
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
109
|
+
}
|
|
110
|
+
_GenerateStaticDeclarationsFromContext(context: KNativePointer, outputPath: KStringPtr): KInt {
|
|
111
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
112
|
+
}
|
|
113
|
+
_IsExpression(ast: KNativePointer): KBoolean {
|
|
114
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
115
|
+
}
|
|
116
|
+
_IsStatement(ast: KNativePointer): KBoolean {
|
|
117
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
118
|
+
}
|
|
119
|
+
_IsArrowFunctionExpression(ast: KNativePointer): KBoolean {
|
|
120
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
121
|
+
}
|
|
122
|
+
_IsAnnotationDeclaration(ast: KNativePointer): KBoolean {
|
|
123
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
124
|
+
}
|
|
125
|
+
_IsAnnotationUsage(ast: KNativePointer): KBoolean {
|
|
126
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
127
|
+
}
|
|
128
|
+
_IsAssertStatement(ast: KNativePointer): KBoolean {
|
|
129
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
130
|
+
}
|
|
131
|
+
_IsAwaitExpression(ast: KNativePointer): KBoolean {
|
|
132
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
133
|
+
}
|
|
134
|
+
_IsBigIntLiteral(ast: KNativePointer): KBoolean {
|
|
135
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
136
|
+
}
|
|
137
|
+
_IsBinaryExpression(ast: KNativePointer): KBoolean {
|
|
138
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
139
|
+
}
|
|
140
|
+
_IsBlockStatement(ast: KNativePointer): KBoolean {
|
|
141
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
142
|
+
}
|
|
143
|
+
_IsBooleanLiteral(ast: KNativePointer): KBoolean {
|
|
144
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
145
|
+
}
|
|
146
|
+
_IsBreakStatement(ast: KNativePointer): KBoolean {
|
|
147
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
148
|
+
}
|
|
149
|
+
_IsCallExpression(ast: KNativePointer): KBoolean {
|
|
150
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
151
|
+
}
|
|
152
|
+
_IsCatchClause(ast: KNativePointer): KBoolean {
|
|
153
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
154
|
+
}
|
|
155
|
+
_IsChainExpression(ast: KNativePointer): KBoolean {
|
|
156
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
157
|
+
}
|
|
158
|
+
_IsCharLiteral(ast: KNativePointer): KBoolean {
|
|
159
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
160
|
+
}
|
|
161
|
+
_IsClassDefinition(ast: KNativePointer): KBoolean {
|
|
162
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
163
|
+
}
|
|
164
|
+
_IsClassDeclaration(ast: KNativePointer): KBoolean {
|
|
165
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
166
|
+
}
|
|
167
|
+
_IsClassExpression(ast: KNativePointer): KBoolean {
|
|
168
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
169
|
+
}
|
|
170
|
+
_IsClassProperty(ast: KNativePointer): KBoolean {
|
|
171
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
172
|
+
}
|
|
173
|
+
_IsClassStaticBlock(ast: KNativePointer): KBoolean {
|
|
174
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
175
|
+
}
|
|
176
|
+
_IsConditionalExpression(ast: KNativePointer): KBoolean {
|
|
177
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
178
|
+
}
|
|
179
|
+
_IsContinueStatement(ast: KNativePointer): KBoolean {
|
|
180
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
181
|
+
}
|
|
182
|
+
_IsDebuggerStatement(ast: KNativePointer): KBoolean {
|
|
183
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
184
|
+
}
|
|
185
|
+
_IsDecorator(ast: KNativePointer): KBoolean {
|
|
186
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
187
|
+
}
|
|
188
|
+
_IsDirectEvalExpression(ast: KNativePointer): KBoolean {
|
|
189
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
190
|
+
}
|
|
191
|
+
_IsDoWhileStatement(ast: KNativePointer): KBoolean {
|
|
192
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
193
|
+
}
|
|
194
|
+
_IsEmptyStatement(ast: KNativePointer): KBoolean {
|
|
195
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
196
|
+
}
|
|
197
|
+
_IsExportAllDeclaration(ast: KNativePointer): KBoolean {
|
|
198
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
199
|
+
}
|
|
200
|
+
_IsExportDefaultDeclaration(ast: KNativePointer): KBoolean {
|
|
201
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
202
|
+
}
|
|
203
|
+
_IsExportNamedDeclaration(ast: KNativePointer): KBoolean {
|
|
204
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
205
|
+
}
|
|
206
|
+
_IsExportSpecifier(ast: KNativePointer): KBoolean {
|
|
207
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
208
|
+
}
|
|
209
|
+
_IsExpressionStatement(ast: KNativePointer): KBoolean {
|
|
210
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
211
|
+
}
|
|
212
|
+
_IsForInStatement(ast: KNativePointer): KBoolean {
|
|
213
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
214
|
+
}
|
|
215
|
+
_IsForOfStatement(ast: KNativePointer): KBoolean {
|
|
216
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
217
|
+
}
|
|
218
|
+
_IsForUpdateStatement(ast: KNativePointer): KBoolean {
|
|
219
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
220
|
+
}
|
|
221
|
+
_IsFunctionDeclaration(ast: KNativePointer): KBoolean {
|
|
222
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
223
|
+
}
|
|
224
|
+
_IsFunctionExpression(ast: KNativePointer): KBoolean {
|
|
225
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
226
|
+
}
|
|
227
|
+
_IsIdentifier(ast: KNativePointer): KBoolean {
|
|
228
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
229
|
+
}
|
|
230
|
+
_IsDummyNode(ast: KNativePointer): KBoolean {
|
|
231
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
232
|
+
}
|
|
233
|
+
_IsIfStatement(ast: KNativePointer): KBoolean {
|
|
234
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
235
|
+
}
|
|
236
|
+
_IsImportDeclaration(ast: KNativePointer): KBoolean {
|
|
237
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
238
|
+
}
|
|
239
|
+
_IsImportExpression(ast: KNativePointer): KBoolean {
|
|
240
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
241
|
+
}
|
|
242
|
+
_IsImportDefaultSpecifier(ast: KNativePointer): KBoolean {
|
|
243
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
244
|
+
}
|
|
245
|
+
_IsImportNamespaceSpecifier(ast: KNativePointer): KBoolean {
|
|
246
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
247
|
+
}
|
|
248
|
+
_IsImportSpecifier(ast: KNativePointer): KBoolean {
|
|
249
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
250
|
+
}
|
|
251
|
+
_IsLabelledStatement(ast: KNativePointer): KBoolean {
|
|
252
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
253
|
+
}
|
|
254
|
+
_IsMemberExpression(ast: KNativePointer): KBoolean {
|
|
255
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
256
|
+
}
|
|
257
|
+
_IsMetaProperty(ast: KNativePointer): KBoolean {
|
|
258
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
259
|
+
}
|
|
260
|
+
_IsMethodDefinition(ast: KNativePointer): KBoolean {
|
|
261
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
262
|
+
}
|
|
263
|
+
_IsNamedType(ast: KNativePointer): KBoolean {
|
|
264
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
265
|
+
}
|
|
266
|
+
_IsNewExpression(ast: KNativePointer): KBoolean {
|
|
267
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
268
|
+
}
|
|
269
|
+
_IsNullLiteral(ast: KNativePointer): KBoolean {
|
|
270
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
271
|
+
}
|
|
272
|
+
_IsUndefinedLiteral(ast: KNativePointer): KBoolean {
|
|
273
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
274
|
+
}
|
|
275
|
+
_IsNumberLiteral(ast: KNativePointer): KBoolean {
|
|
276
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
277
|
+
}
|
|
278
|
+
_IsOmittedExpression(ast: KNativePointer): KBoolean {
|
|
279
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
280
|
+
}
|
|
281
|
+
_IsOverloadDeclaration(ast: KNativePointer): KBoolean {
|
|
282
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
283
|
+
}
|
|
284
|
+
_IsPrefixAssertionExpression(ast: KNativePointer): KBoolean {
|
|
285
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
286
|
+
}
|
|
287
|
+
_IsProperty(ast: KNativePointer): KBoolean {
|
|
288
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
289
|
+
}
|
|
290
|
+
_IsRegExpLiteral(ast: KNativePointer): KBoolean {
|
|
291
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
292
|
+
}
|
|
293
|
+
_IsETSReExportDeclaration(ast: KNativePointer): KBoolean {
|
|
294
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
295
|
+
}
|
|
296
|
+
_IsReturnStatement(ast: KNativePointer): KBoolean {
|
|
297
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
298
|
+
}
|
|
299
|
+
_IsScriptFunction(ast: KNativePointer): KBoolean {
|
|
300
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
301
|
+
}
|
|
302
|
+
_IsSequenceExpression(ast: KNativePointer): KBoolean {
|
|
303
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
304
|
+
}
|
|
305
|
+
_IsStringLiteral(ast: KNativePointer): KBoolean {
|
|
306
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
307
|
+
}
|
|
308
|
+
_IsETSNonNullishTypeNode(ast: KNativePointer): KBoolean {
|
|
309
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
310
|
+
}
|
|
311
|
+
_IsETSNullType(ast: KNativePointer): KBoolean {
|
|
312
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
313
|
+
}
|
|
314
|
+
_IsETSUndefinedType(ast: KNativePointer): KBoolean {
|
|
315
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
316
|
+
}
|
|
317
|
+
_IsETSNeverType(ast: KNativePointer): KBoolean {
|
|
318
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
319
|
+
}
|
|
320
|
+
_IsETSStringLiteralType(ast: KNativePointer): KBoolean {
|
|
321
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
322
|
+
}
|
|
323
|
+
_IsETSIntrinsicNode(ast: KNativePointer): KBoolean {
|
|
324
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
325
|
+
}
|
|
326
|
+
_IsETSFunctionType(ast: KNativePointer): KBoolean {
|
|
327
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
328
|
+
}
|
|
329
|
+
_IsETSWildcardType(ast: KNativePointer): KBoolean {
|
|
330
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
331
|
+
}
|
|
332
|
+
_IsETSPrimitiveType(ast: KNativePointer): KBoolean {
|
|
333
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
334
|
+
}
|
|
335
|
+
_IsETSPackageDeclaration(ast: KNativePointer): KBoolean {
|
|
336
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
337
|
+
}
|
|
338
|
+
_IsETSClassLiteral(ast: KNativePointer): KBoolean {
|
|
339
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
340
|
+
}
|
|
341
|
+
_IsETSTypeReference(ast: KNativePointer): KBoolean {
|
|
342
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
343
|
+
}
|
|
344
|
+
_IsETSTypeReferencePart(ast: KNativePointer): KBoolean {
|
|
345
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
346
|
+
}
|
|
347
|
+
_IsETSUnionType(ast: KNativePointer): KBoolean {
|
|
348
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
349
|
+
}
|
|
350
|
+
_IsETSKeyofType(ast: KNativePointer): KBoolean {
|
|
351
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
352
|
+
}
|
|
353
|
+
_IsETSNewArrayInstanceExpression(ast: KNativePointer): KBoolean {
|
|
354
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
355
|
+
}
|
|
356
|
+
_IsETSNewMultiDimArrayInstanceExpression(ast: KNativePointer): KBoolean {
|
|
357
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
358
|
+
}
|
|
359
|
+
_IsETSNewClassInstanceExpression(ast: KNativePointer): KBoolean {
|
|
360
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
361
|
+
}
|
|
362
|
+
_IsETSImportDeclaration(ast: KNativePointer): KBoolean {
|
|
363
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
364
|
+
}
|
|
365
|
+
_IsETSParameterExpression(ast: KNativePointer): KBoolean {
|
|
366
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
367
|
+
}
|
|
368
|
+
_IsETSTuple(ast: KNativePointer): KBoolean {
|
|
369
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
370
|
+
}
|
|
371
|
+
_IsETSModule(ast: KNativePointer): KBoolean {
|
|
372
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
373
|
+
}
|
|
374
|
+
_IsSuperExpression(ast: KNativePointer): KBoolean {
|
|
375
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
376
|
+
}
|
|
377
|
+
_IsETSStructDeclaration(ast: KNativePointer): KBoolean {
|
|
378
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
379
|
+
}
|
|
380
|
+
_IsSwitchCaseStatement(ast: KNativePointer): KBoolean {
|
|
381
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
382
|
+
}
|
|
383
|
+
_IsSwitchStatement(ast: KNativePointer): KBoolean {
|
|
384
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
385
|
+
}
|
|
386
|
+
_IsTSEnumDeclaration(ast: KNativePointer): KBoolean {
|
|
387
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
388
|
+
}
|
|
389
|
+
_IsTSEnumMember(ast: KNativePointer): KBoolean {
|
|
390
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
391
|
+
}
|
|
392
|
+
_IsTSExternalModuleReference(ast: KNativePointer): KBoolean {
|
|
393
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
394
|
+
}
|
|
395
|
+
_IsTSNumberKeyword(ast: KNativePointer): KBoolean {
|
|
396
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
397
|
+
}
|
|
398
|
+
_IsTSAnyKeyword(ast: KNativePointer): KBoolean {
|
|
399
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
400
|
+
}
|
|
401
|
+
_IsTSStringKeyword(ast: KNativePointer): KBoolean {
|
|
402
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
403
|
+
}
|
|
404
|
+
_IsTSBooleanKeyword(ast: KNativePointer): KBoolean {
|
|
405
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
406
|
+
}
|
|
407
|
+
_IsTSVoidKeyword(ast: KNativePointer): KBoolean {
|
|
408
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
409
|
+
}
|
|
410
|
+
_IsTSUndefinedKeyword(ast: KNativePointer): KBoolean {
|
|
411
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
412
|
+
}
|
|
413
|
+
_IsTSUnknownKeyword(ast: KNativePointer): KBoolean {
|
|
414
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
415
|
+
}
|
|
416
|
+
_IsTSObjectKeyword(ast: KNativePointer): KBoolean {
|
|
417
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
418
|
+
}
|
|
419
|
+
_IsTSBigintKeyword(ast: KNativePointer): KBoolean {
|
|
420
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
421
|
+
}
|
|
422
|
+
_IsTSNeverKeyword(ast: KNativePointer): KBoolean {
|
|
423
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
424
|
+
}
|
|
425
|
+
_IsTSNonNullExpression(ast: KNativePointer): KBoolean {
|
|
426
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
427
|
+
}
|
|
428
|
+
_IsTSNullKeyword(ast: KNativePointer): KBoolean {
|
|
429
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
430
|
+
}
|
|
431
|
+
_IsTSArrayType(ast: KNativePointer): KBoolean {
|
|
432
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
433
|
+
}
|
|
434
|
+
_IsTSUnionType(ast: KNativePointer): KBoolean {
|
|
435
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
436
|
+
}
|
|
437
|
+
_IsTSTypeLiteral(ast: KNativePointer): KBoolean {
|
|
438
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
439
|
+
}
|
|
440
|
+
_IsTSPropertySignature(ast: KNativePointer): KBoolean {
|
|
441
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
442
|
+
}
|
|
443
|
+
_IsTSMethodSignature(ast: KNativePointer): KBoolean {
|
|
444
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
445
|
+
}
|
|
446
|
+
_IsTSSignatureDeclaration(ast: KNativePointer): KBoolean {
|
|
447
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
448
|
+
}
|
|
449
|
+
_IsTSParenthesizedType(ast: KNativePointer): KBoolean {
|
|
450
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
451
|
+
}
|
|
452
|
+
_IsTSLiteralType(ast: KNativePointer): KBoolean {
|
|
453
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
454
|
+
}
|
|
455
|
+
_IsTSInferType(ast: KNativePointer): KBoolean {
|
|
456
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
457
|
+
}
|
|
458
|
+
_IsTSConditionalType(ast: KNativePointer): KBoolean {
|
|
459
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
460
|
+
}
|
|
461
|
+
_IsTSImportType(ast: KNativePointer): KBoolean {
|
|
462
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
463
|
+
}
|
|
464
|
+
_IsTSIntersectionType(ast: KNativePointer): KBoolean {
|
|
465
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
466
|
+
}
|
|
467
|
+
_IsTSMappedType(ast: KNativePointer): KBoolean {
|
|
468
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
469
|
+
}
|
|
470
|
+
_IsTSModuleBlock(ast: KNativePointer): KBoolean {
|
|
471
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
472
|
+
}
|
|
473
|
+
_IsTSThisType(ast: KNativePointer): KBoolean {
|
|
474
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
475
|
+
}
|
|
476
|
+
_IsTSTypeOperator(ast: KNativePointer): KBoolean {
|
|
477
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
478
|
+
}
|
|
479
|
+
_IsTSTypeParameter(ast: KNativePointer): KBoolean {
|
|
480
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
481
|
+
}
|
|
482
|
+
_IsTSTypeParameterDeclaration(ast: KNativePointer): KBoolean {
|
|
483
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
484
|
+
}
|
|
485
|
+
_IsTSTypeParameterInstantiation(ast: KNativePointer): KBoolean {
|
|
486
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
487
|
+
}
|
|
488
|
+
_IsTSTypePredicate(ast: KNativePointer): KBoolean {
|
|
489
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
490
|
+
}
|
|
491
|
+
_IsTSParameterProperty(ast: KNativePointer): KBoolean {
|
|
492
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
493
|
+
}
|
|
494
|
+
_IsTSModuleDeclaration(ast: KNativePointer): KBoolean {
|
|
495
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
496
|
+
}
|
|
497
|
+
_IsTSImportEqualsDeclaration(ast: KNativePointer): KBoolean {
|
|
498
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
499
|
+
}
|
|
500
|
+
_IsTSFunctionType(ast: KNativePointer): KBoolean {
|
|
501
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
502
|
+
}
|
|
503
|
+
_IsTSConstructorType(ast: KNativePointer): KBoolean {
|
|
504
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
505
|
+
}
|
|
506
|
+
_IsTSTypeAliasDeclaration(ast: KNativePointer): KBoolean {
|
|
507
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
508
|
+
}
|
|
509
|
+
_IsTSTypeReference(ast: KNativePointer): KBoolean {
|
|
510
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
511
|
+
}
|
|
512
|
+
_IsTSQualifiedName(ast: KNativePointer): KBoolean {
|
|
513
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
514
|
+
}
|
|
515
|
+
_IsTSIndexedAccessType(ast: KNativePointer): KBoolean {
|
|
516
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
517
|
+
}
|
|
518
|
+
_IsTSInterfaceDeclaration(ast: KNativePointer): KBoolean {
|
|
519
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
520
|
+
}
|
|
521
|
+
_IsTSInterfaceBody(ast: KNativePointer): KBoolean {
|
|
522
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
523
|
+
}
|
|
524
|
+
_IsTSInterfaceHeritage(ast: KNativePointer): KBoolean {
|
|
525
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
526
|
+
}
|
|
527
|
+
_IsTSTupleType(ast: KNativePointer): KBoolean {
|
|
528
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
529
|
+
}
|
|
530
|
+
_IsTSNamedTupleMember(ast: KNativePointer): KBoolean {
|
|
531
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
532
|
+
}
|
|
533
|
+
_IsTSIndexSignature(ast: KNativePointer): KBoolean {
|
|
534
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
535
|
+
}
|
|
536
|
+
_IsTSTypeQuery(ast: KNativePointer): KBoolean {
|
|
537
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
538
|
+
}
|
|
539
|
+
_IsTSAsExpression(ast: KNativePointer): KBoolean {
|
|
540
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
541
|
+
}
|
|
542
|
+
_IsTSClassImplements(ast: KNativePointer): KBoolean {
|
|
543
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
544
|
+
}
|
|
545
|
+
_IsTSTypeAssertion(ast: KNativePointer): KBoolean {
|
|
546
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
547
|
+
}
|
|
548
|
+
_IsTaggedTemplateExpression(ast: KNativePointer): KBoolean {
|
|
549
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
550
|
+
}
|
|
551
|
+
_IsTemplateElement(ast: KNativePointer): KBoolean {
|
|
552
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
553
|
+
}
|
|
554
|
+
_IsTemplateLiteral(ast: KNativePointer): KBoolean {
|
|
555
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
556
|
+
}
|
|
557
|
+
_IsThisExpression(ast: KNativePointer): KBoolean {
|
|
558
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
559
|
+
}
|
|
560
|
+
_IsTypeofExpression(ast: KNativePointer): KBoolean {
|
|
561
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
562
|
+
}
|
|
563
|
+
_IsThrowStatement(ast: KNativePointer): KBoolean {
|
|
564
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
565
|
+
}
|
|
566
|
+
_IsTryStatement(ast: KNativePointer): KBoolean {
|
|
567
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
568
|
+
}
|
|
569
|
+
_IsUnaryExpression(ast: KNativePointer): KBoolean {
|
|
570
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
571
|
+
}
|
|
572
|
+
_IsUpdateExpression(ast: KNativePointer): KBoolean {
|
|
573
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
574
|
+
}
|
|
575
|
+
_IsVariableDeclaration(ast: KNativePointer): KBoolean {
|
|
576
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
577
|
+
}
|
|
578
|
+
_IsVariableDeclarator(ast: KNativePointer): KBoolean {
|
|
579
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
580
|
+
}
|
|
581
|
+
_IsWhileStatement(ast: KNativePointer): KBoolean {
|
|
582
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
583
|
+
}
|
|
584
|
+
_IsYieldExpression(ast: KNativePointer): KBoolean {
|
|
585
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
586
|
+
}
|
|
587
|
+
_IsOpaqueTypeNode(ast: KNativePointer): KBoolean {
|
|
588
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
589
|
+
}
|
|
590
|
+
_IsBlockExpression(ast: KNativePointer): KBoolean {
|
|
591
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
592
|
+
}
|
|
593
|
+
_IsBrokenTypeNode(ast: KNativePointer): KBoolean {
|
|
594
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
595
|
+
}
|
|
596
|
+
_IsArrayExpression(ast: KNativePointer): KBoolean {
|
|
597
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
598
|
+
}
|
|
599
|
+
_IsArrayPattern(ast: KNativePointer): KBoolean {
|
|
600
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
601
|
+
}
|
|
602
|
+
_IsAssignmentExpression(ast: KNativePointer): KBoolean {
|
|
603
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
604
|
+
}
|
|
605
|
+
_IsAssignmentPattern(ast: KNativePointer): KBoolean {
|
|
606
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
607
|
+
}
|
|
608
|
+
_IsObjectExpression(ast: KNativePointer): KBoolean {
|
|
609
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
610
|
+
}
|
|
611
|
+
_IsObjectPattern(ast: KNativePointer): KBoolean {
|
|
612
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
613
|
+
}
|
|
614
|
+
_IsSpreadElement(ast: KNativePointer): KBoolean {
|
|
615
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
616
|
+
}
|
|
617
|
+
_IsRestElement(ast: KNativePointer): KBoolean {
|
|
618
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
619
|
+
}
|
|
620
|
+
_AstNodeName(ast: KNativePointer): KStringPtr {
|
|
621
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
622
|
+
}
|
|
35
623
|
_CreateNumberLiteral(context: KNativePointer, value: KInt): KNativePointer {
|
|
36
624
|
throw new Error("This methods was not overloaded by native module initialization")
|
|
37
625
|
}
|
|
@@ -110,7 +698,13 @@ export class Es2pandaNativeModule {
|
|
|
110
698
|
_ClassPropertyNeedInitInStaticBlockConst(context: KNativePointer, receiver: KNativePointer): KBoolean {
|
|
111
699
|
throw new Error("This methods was not overloaded by native module initialization")
|
|
112
700
|
}
|
|
113
|
-
|
|
701
|
+
_ClassPropertySetNeedInitInStaticBlock(context: KNativePointer, receiver: KNativePointer): void {
|
|
702
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
703
|
+
}
|
|
704
|
+
_ClassPropertyIsImmediateInitConst(context: KNativePointer, receiver: KNativePointer): KBoolean {
|
|
705
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
706
|
+
}
|
|
707
|
+
_ClassPropertySetIsImmediateInit(context: KNativePointer, receiver: KNativePointer): void {
|
|
114
708
|
throw new Error("This methods was not overloaded by native module initialization")
|
|
115
709
|
}
|
|
116
710
|
_ClassPropertyEmplaceAnnotations(context: KNativePointer, receiver: KNativePointer, source: KNativePointer): void {
|
|
@@ -962,9 +1556,6 @@ export class Es2pandaNativeModule {
|
|
|
962
1556
|
_MemberExpressionRemoveMemberKind(context: KNativePointer, receiver: KNativePointer, kind: KInt): void {
|
|
963
1557
|
throw new Error("This methods was not overloaded by native module initialization")
|
|
964
1558
|
}
|
|
965
|
-
_MemberExpressionExtensionAccessorTypeConst(context: KNativePointer, receiver: KNativePointer): KNativePointer {
|
|
966
|
-
throw new Error("This methods was not overloaded by native module initialization")
|
|
967
|
-
}
|
|
968
1559
|
_MemberExpressionIsIgnoreBoxConst(context: KNativePointer, receiver: KNativePointer): KBoolean {
|
|
969
1560
|
throw new Error("This methods was not overloaded by native module initialization")
|
|
970
1561
|
}
|
|
@@ -1958,12 +2549,18 @@ export class Es2pandaNativeModule {
|
|
|
1958
2549
|
_AstNodeSetRange(context: KNativePointer, receiver: KNativePointer, loc: KNativePointer): void {
|
|
1959
2550
|
throw new Error("This methods was not overloaded by native module initialization")
|
|
1960
2551
|
}
|
|
2552
|
+
_AstNodeSetProgram(context: KNativePointer, receiver: KNativePointer, program: KNativePointer): void {
|
|
2553
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
2554
|
+
}
|
|
1961
2555
|
_AstNodeSetStart(context: KNativePointer, receiver: KNativePointer, start: KNativePointer): void {
|
|
1962
2556
|
throw new Error("This methods was not overloaded by native module initialization")
|
|
1963
2557
|
}
|
|
1964
2558
|
_AstNodeSetEnd(context: KNativePointer, receiver: KNativePointer, end: KNativePointer): void {
|
|
1965
2559
|
throw new Error("This methods was not overloaded by native module initialization")
|
|
1966
2560
|
}
|
|
2561
|
+
_AstNodeProgramConst(context: KNativePointer, receiver: KNativePointer): KNativePointer {
|
|
2562
|
+
throw new Error("This methods was not overloaded by native module initialization")
|
|
2563
|
+
}
|
|
1967
2564
|
_AstNodeStartConst(context: KNativePointer, receiver: KNativePointer): KNativePointer {
|
|
1968
2565
|
throw new Error("This methods was not overloaded by native module initialization")
|
|
1969
2566
|
}
|
|
@@ -4529,15 +5126,6 @@ export class Es2pandaNativeModule {
|
|
|
4529
5126
|
_UpdateTSThisType(context: KNativePointer, original: KNativePointer): KNativePointer {
|
|
4530
5127
|
throw new Error("This methods was not overloaded by native module initialization")
|
|
4531
5128
|
}
|
|
4532
|
-
_CreateInterfaceDecl(context: KNativePointer, name: KStringPtr): KNativePointer {
|
|
4533
|
-
throw new Error("This methods was not overloaded by native module initialization")
|
|
4534
|
-
}
|
|
4535
|
-
_CreateInterfaceDecl1(context: KNativePointer, name: KStringPtr, declNode: KNativePointer): KNativePointer {
|
|
4536
|
-
throw new Error("This methods was not overloaded by native module initialization")
|
|
4537
|
-
}
|
|
4538
|
-
_CreateFunctionDecl(context: KNativePointer, name: KStringPtr, node: KNativePointer): KNativePointer {
|
|
4539
|
-
throw new Error("This methods was not overloaded by native module initialization")
|
|
4540
|
-
}
|
|
4541
5129
|
_ProgramSetKind(context: KNativePointer, receiver: KNativePointer, kind: KInt): void {
|
|
4542
5130
|
throw new Error("This methods was not overloaded by native module initialization")
|
|
4543
5131
|
}
|