@idlizer/arktscgen 2.1.7 → 2.1.9-arktscgen-5
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 +34 -0
- package/build/libarkts-copy/native/meson.build +128 -75
- package/build/libarkts-copy/native/meson_options.txt +6 -0
- package/build/libarkts-copy/native/src/bridges.cc +271 -8
- package/build/libarkts-copy/native/src/common.cc +168 -47
- package/build/libarkts-copy/native/src/common.h +53 -8
- package/build/libarkts-copy/native/src/generated/bridges.cc +2625 -319
- package/build/libarkts-copy/package.json +31 -17
- package/build/libarkts-copy/src/Es2pandaNativeModule.ts +98 -4
- package/build/libarkts-copy/src/arkts-api/AbstractVisitor.ts +1 -1
- package/build/libarkts-copy/src/arkts-api/ChainExpressionFilter.ts +78 -0
- package/build/libarkts-copy/src/arkts-api/CheckedBackFilter.ts +86 -8
- package/build/libarkts-copy/src/arkts-api/CompileWithCache.ts +193 -0
- package/build/libarkts-copy/src/arkts-api/ImportStorage.ts +78 -0
- package/build/libarkts-copy/src/arkts-api/InferVoidReturnType.ts +89 -0
- package/build/libarkts-copy/src/arkts-api/ProgramProvider.ts +50 -0
- package/build/libarkts-copy/src/arkts-api/SetBaseOverloads.ts +10 -17
- package/build/libarkts-copy/src/arkts-api/class-by-peer.ts +2 -3
- package/build/libarkts-copy/src/arkts-api/factory/nodeFactory.ts +18 -6
- package/build/libarkts-copy/src/arkts-api/index.ts +10 -1
- package/build/libarkts-copy/src/arkts-api/node-cache.ts +8 -4
- package/build/libarkts-copy/src/arkts-api/node-utilities/AnnotationUsage.ts +29 -0
- package/build/libarkts-copy/src/arkts-api/node-utilities/ArkTsConfig.ts +25 -0
- package/build/libarkts-copy/src/arkts-api/node-utilities/ArrayExpression.ts +1 -1
- package/build/libarkts-copy/src/arkts-api/node-utilities/BlockStatement.ts +29 -0
- package/build/libarkts-copy/src/arkts-api/node-utilities/CallExpression.ts +2 -2
- package/build/libarkts-copy/src/arkts-api/node-utilities/ClassDeclaration.ts +54 -0
- package/build/libarkts-copy/src/arkts-api/node-utilities/ClassDefinition.ts +1 -1
- package/build/libarkts-copy/src/arkts-api/node-utilities/ClassProperty.ts +3 -3
- package/build/libarkts-copy/src/arkts-api/node-utilities/ETSFunctionType.ts +2 -2
- package/build/libarkts-copy/src/arkts-api/node-utilities/ETSImportDeclaration.ts +3 -33
- package/build/libarkts-copy/src/arkts-api/node-utilities/ETSParameterExpression.ts +3 -9
- package/build/libarkts-copy/src/arkts-api/node-utilities/ETSStructDeclaration.ts +1 -1
- package/build/libarkts-copy/src/arkts-api/node-utilities/ETSTuple.ts +1 -1
- package/build/libarkts-copy/src/arkts-api/node-utilities/MemberExpression.ts +1 -1
- package/build/libarkts-copy/src/arkts-api/node-utilities/MethodDefinition.ts +2 -2
- package/build/libarkts-copy/src/arkts-api/node-utilities/NumberLiteral.ts +2 -2
- package/build/libarkts-copy/src/arkts-api/node-utilities/ObjectExpression.ts +1 -1
- package/build/libarkts-copy/src/arkts-api/node-utilities/Program.ts +40 -0
- package/build/libarkts-copy/src/arkts-api/node-utilities/TSInterfaceDeclaration.ts +2 -2
- package/build/libarkts-copy/src/arkts-api/node-utilities/TSTypeParameter.ts +1 -1
- package/build/libarkts-copy/src/arkts-api/node-utilities/TSTypeReferencePart.ts +1 -1
- package/build/libarkts-copy/src/arkts-api/node-utilities/VariableDeclaration.ts +1 -1
- package/build/libarkts-copy/src/arkts-api/node-utilities/VariableDeclarator.ts +1 -1
- package/build/libarkts-copy/src/arkts-api/peers/ArktsObject.ts +3 -1
- package/build/libarkts-copy/src/arkts-api/peers/AstNode.ts +80 -15
- package/build/libarkts-copy/src/arkts-api/peers/Config.ts +8 -1
- package/build/libarkts-copy/src/arkts-api/peers/Context.ts +71 -4
- package/build/libarkts-copy/src/arkts-api/peers/{Program.ts → ExternalSource.ts} +2 -22
- package/build/libarkts-copy/src/arkts-api/peers/Options.ts +34 -0
- package/build/libarkts-copy/src/arkts-api/plugins.ts +26 -12
- package/build/libarkts-copy/src/arkts-api/static/global.ts +10 -4
- package/build/libarkts-copy/src/arkts-api/static/profiler.ts +180 -23
- package/build/libarkts-copy/src/arkts-api/utilities/private.ts +22 -24
- package/build/libarkts-copy/src/arkts-api/utilities/public.ts +54 -12
- package/build/libarkts-copy/src/arkts-api/visitor.ts +32 -37
- package/build/libarkts-copy/src/arkts-api/wrapper-compat.ts +32 -0
- package/build/libarkts-copy/src/checkSdk.ts +25 -0
- package/build/libarkts-copy/src/generated/Es2pandaEnums.ts +450 -442
- package/build/libarkts-copy/src/generated/Es2pandaNativeModule.ts +769 -63
- package/build/libarkts-copy/src/generated/factory.ts +12 -15
- package/build/libarkts-copy/src/generated/index.ts +10 -3
- package/build/libarkts-copy/src/generated/peers/AnnotatedAstNode.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/AnnotatedExpression.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/AnnotatedStatement.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/AnnotationDeclaration.ts +64 -6
- package/build/libarkts-copy/src/generated/peers/AnnotationUsage.ts +16 -4
- package/build/libarkts-copy/src/generated/peers/ArkTsConfig.ts +67 -0
- package/build/libarkts-copy/src/generated/peers/ArrayExpression.ts +17 -5
- package/build/libarkts-copy/src/generated/peers/ArrowFunctionExpression.ts +46 -6
- package/build/libarkts-copy/src/generated/peers/AssertStatement.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/AssignmentExpression.ts +17 -5
- package/build/libarkts-copy/src/generated/peers/AstDumper.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/AstVerifier.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/AstVisitor.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/AwaitExpression.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/BigIntLiteral.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/BinaryExpression.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/BindingProps.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/BlockExpression.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/BlockStatement.ts +30 -7
- package/build/libarkts-copy/src/generated/peers/BooleanLiteral.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/BreakStatement.ts +16 -4
- package/build/libarkts-copy/src/generated/peers/CallExpression.ts +24 -3
- package/build/libarkts-copy/src/generated/peers/CatchClause.ts +16 -4
- package/build/libarkts-copy/src/generated/peers/ChainExpression.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/CharLiteral.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/ClassDeclaration.ts +37 -4
- package/build/libarkts-copy/src/generated/peers/ClassDefinition.ts +136 -42
- package/build/libarkts-copy/src/generated/peers/ClassElement.ts +28 -4
- package/build/libarkts-copy/src/generated/peers/ClassExpression.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/ClassProperty.ts +43 -5
- package/build/libarkts-copy/src/generated/peers/ClassStaticBlock.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/CodeGen.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/ConditionalExpression.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/ContinueStatement.ts +16 -4
- package/build/libarkts-copy/src/generated/peers/DebuggerStatement.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/Declaration.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/Decorator.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/{OverloadInfo.ts → DiagnosticInfo.ts} +8 -2
- package/build/libarkts-copy/src/generated/peers/DirectEvalExpression.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/DoWhileStatement.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/DynamicImportData.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/ETSClassLiteral.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/ETSFunctionType.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/ETSImportDeclaration.ts +20 -5
- package/build/libarkts-copy/src/generated/peers/ETSKeyofType.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/ETSModule.ts +63 -4
- package/build/libarkts-copy/src/generated/peers/ETSNewArrayInstanceExpression.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/ETSNewClassInstanceExpression.ts +17 -5
- package/build/libarkts-copy/src/generated/peers/ETSNewMultiDimArrayInstanceExpression.ts +17 -5
- package/build/libarkts-copy/src/generated/peers/ETSNullType.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/ETSPackageDeclaration.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/ETSParameterExpression.ts +54 -12
- package/build/libarkts-copy/src/generated/peers/ETSPrimitiveType.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/ETSReExportDeclaration.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/ETSStringLiteralType.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/ETSStructDeclaration.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/ETSTuple.ts +26 -8
- package/build/libarkts-copy/src/generated/peers/ETSTypeReference.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/ETSTypeReferencePart.ts +17 -5
- package/build/libarkts-copy/src/generated/peers/ETSUndefinedType.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/ETSUnionType.ts +19 -4
- package/build/libarkts-copy/src/generated/peers/ETSWildcardType.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/EmptyStatement.ts +22 -4
- package/build/libarkts-copy/src/generated/peers/ErrorLogger.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/ExportAllDeclaration.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/ExportDefaultDeclaration.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/ExportNamedDeclaration.ts +30 -7
- package/build/libarkts-copy/src/generated/peers/ExportSpecifier.ts +30 -3
- package/build/libarkts-copy/src/generated/peers/Expression.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/ExpressionStatement.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/ForInStatement.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/ForOfStatement.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/ForUpdateStatement.ts +10 -2
- package/build/libarkts-copy/src/generated/peers/FunctionDecl.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/FunctionDeclaration.ts +50 -6
- package/build/libarkts-copy/src/generated/peers/FunctionExpression.ts +16 -4
- package/build/libarkts-copy/src/generated/peers/FunctionSignature.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/IRNode.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/Identifier.ts +24 -5
- package/build/libarkts-copy/src/generated/peers/IfStatement.ts +18 -3
- package/build/libarkts-copy/src/generated/peers/ImportDeclaration.ts +32 -4
- package/build/libarkts-copy/src/generated/peers/ImportDefaultSpecifier.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/ImportExpression.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/ImportNamespaceSpecifier.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/ImportSource.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/ImportSpecifier.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/IndexInfo.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/InterfaceDecl.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/LabelPair.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/LabelledStatement.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/Literal.ts +15 -1
- package/build/libarkts-copy/src/generated/peers/LoopStatement.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/MaybeOptionalExpression.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/MemberExpression.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/MetaProperty.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/MethodDefinition.ts +30 -10
- package/build/libarkts-copy/src/generated/peers/NamedType.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/NewExpression.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/NullLiteral.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/NumberLiteral.ts +25 -9
- package/build/libarkts-copy/src/generated/peers/ObjectDescriptor.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/ObjectExpression.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/OmittedExpression.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/OpaqueTypeNode.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/PrefixAssertionExpression.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/Program.ts +189 -0
- package/build/libarkts-copy/src/generated/peers/Property.ts +16 -4
- package/build/libarkts-copy/src/generated/peers/RegExpLiteral.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/ReturnStatement.ts +16 -4
- package/build/libarkts-copy/src/generated/peers/ScopeFindResult.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/ScriptFunction.ts +81 -10
- package/build/libarkts-copy/src/generated/peers/ScriptFunctionData.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/SequenceExpression.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/SignatureInfo.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/SourcePosition.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/SourceRange.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/SpreadElement.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/SrcDumper.ts +46 -9
- package/build/libarkts-copy/src/generated/peers/Statement.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/StringLiteral.ts +16 -4
- package/build/libarkts-copy/src/generated/peers/{ETSDynamicFunctionType.ts → SuggestionInfo.ts} +7 -5
- package/build/libarkts-copy/src/generated/peers/SuperExpression.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/SwitchCaseStatement.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/SwitchStatement.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSAnyKeyword.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSArrayType.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSAsExpression.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSBigintKeyword.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSBooleanKeyword.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSClassImplements.ts +17 -5
- package/build/libarkts-copy/src/generated/peers/TSConditionalType.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSConstructorType.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSEnumDeclaration.ts +52 -6
- package/build/libarkts-copy/src/generated/peers/TSEnumMember.ts +17 -5
- package/build/libarkts-copy/src/generated/peers/TSExternalModuleReference.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSFunctionType.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSImportEqualsDeclaration.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSImportType.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSIndexSignature.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSIndexedAccessType.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSInferType.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSInterfaceBody.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSInterfaceDeclaration.ts +82 -8
- package/build/libarkts-copy/src/generated/peers/TSInterfaceHeritage.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSIntersectionType.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSLiteralType.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSMappedType.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSMethodSignature.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSModuleBlock.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSModuleDeclaration.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSNamedTupleMember.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSNeverKeyword.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSNonNullExpression.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSNullKeyword.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSNumberKeyword.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSObjectKeyword.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSParameterProperty.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSParenthesizedType.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSPropertySignature.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSQualifiedName.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSSignatureDeclaration.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSStringKeyword.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSThisType.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSTupleType.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSTypeAliasDeclaration.ts +59 -6
- package/build/libarkts-copy/src/generated/peers/TSTypeAssertion.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSTypeLiteral.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSTypeOperator.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSTypeParameter.ts +47 -7
- package/build/libarkts-copy/src/generated/peers/TSTypeParameterDeclaration.ts +19 -4
- package/build/libarkts-copy/src/generated/peers/TSTypeParameterInstantiation.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSTypePredicate.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSTypeQuery.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSTypeReference.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSUndefinedKeyword.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSUnionType.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSUnknownKeyword.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TSVoidKeyword.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TaggedTemplateExpression.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TemplateElement.ts +17 -5
- package/build/libarkts-copy/src/generated/peers/TemplateLiteral.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/ThisExpression.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/ThrowStatement.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/TryStatement.ts +17 -5
- package/build/libarkts-copy/src/generated/peers/TypeNode.ts +37 -3
- package/build/libarkts-copy/src/generated/peers/TypedAstNode.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/TypedStatement.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/TypeofExpression.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/UnaryExpression.ts +19 -4
- package/build/libarkts-copy/src/generated/peers/UndefinedLiteral.ts +13 -3
- package/build/libarkts-copy/src/generated/peers/UpdateExpression.ts +14 -4
- package/build/libarkts-copy/src/generated/peers/VReg.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/ValidationInfo.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/VariableDeclaration.ts +52 -8
- package/build/libarkts-copy/src/generated/peers/VariableDeclarator.ts +17 -5
- package/build/libarkts-copy/src/generated/peers/VerificationContext.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/VerifierMessage.ts +7 -1
- package/build/libarkts-copy/src/generated/peers/WhileStatement.ts +19 -4
- package/build/libarkts-copy/src/generated/peers/YieldExpression.ts +14 -4
- package/build/libarkts-copy/src/index.ts +13 -1
- package/build/libarkts-copy/src/plugin-utils.ts +117 -0
- package/build/libarkts-copy/src/utils.ts +17 -28
- package/build/libarkts-copy/src/wrapper-compat/README.md +16 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/class-by-peer.ts +46 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/factory/nodeFactory.ts +454 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/factory/nodeTests.ts +99 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/index.ts +88 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/ArrayExpression.ts +38 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/ArrowFunctionExpression.ts +35 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/AssignmentExpression.ts +38 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/BlockStatement.ts +27 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/CallExpression.ts +45 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/ClassDeclaration.ts +27 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/ClassDefinition.ts +73 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/ClassProperty.ts +51 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/ETSFunctionType.ts +42 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/ETSImportDeclaration.ts +39 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/ETSParameterExpression.ts +43 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/ExpressionStatement.ts +28 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/FunctionDeclaration.ts +37 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/FunctionExpression.ts +28 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/IfStatement.ts +37 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/MemberExpression.ts +42 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/MethodDefinition.ts +46 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/NumberLiteral.ts +30 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/ObjectExpression.ts +37 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/Property.ts +27 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/ScriptFunction.ts +46 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/StructDeclaration.ts +28 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/TSInterfaceDeclaration.ts +47 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/TSTypeAliasDeclaration.ts +40 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/TSTypeParameter.ts +36 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/TryStatement.ts +41 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/VariableDeclaration.ts +42 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/node-utilities/VariableDeclarator.ts +39 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/peers/ArktsObject.ts +45 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/peers/AstNode.ts +26 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/peers/Config.ts +53 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/peers/Context.ts +60 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/peers/Diagnostic.ts +39 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/peers/DiagnosticInfo.ts +33 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/peers/DiagnosticKind.ts +33 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/peers/ImportPathManager.ts +34 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/peers/Program.ts +105 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/peers/SourcePosition.ts +38 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/peers/SourceRange.ts +38 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/peers/SuggestionInfo.ts +33 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/static/global.ts +16 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/static/globalUtils.ts +27 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/to-be-generated/MemberExpression.ts +108 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/types.ts +907 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/utilities/nativePtrDecoder.ts +69 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/utilities/performance.ts +190 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/utilities/private.ts +198 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/utilities/public.ts +325 -0
- package/build/libarkts-copy/src/wrapper-compat/arkts-api/visitor.ts +421 -0
- package/build/libarkts-copy/src/wrapper-compat/index.ts +20 -0
- package/lib/index.js +330 -149
- package/package.json +2 -2
- package/templates/Es2pandaEnums.ts +4 -0
- package/templates/Es2pandaNativeModule.ts +5 -1
- package/templates/factory.ts +5 -1
- package/templates/index.ts +5 -1
- package/templates/node-map.ts +5 -1
- package/templates/peer.ts +5 -1
- package/build/libarkts-copy/README.md +0 -36
|
@@ -13,6 +13,10 @@
|
|
|
13
13
|
* limitations under the License.
|
|
14
14
|
*/
|
|
15
15
|
|
|
16
|
+
/*
|
|
17
|
+
* THIS FILE IS AUTOGENERATED BY arktscgen. DO NOT EDIT MANUALLY!
|
|
18
|
+
*/
|
|
19
|
+
|
|
16
20
|
import {
|
|
17
21
|
global,
|
|
18
22
|
passNode,
|
|
@@ -32,27 +36,56 @@ import { ClassDefinition } from "./ClassDefinition"
|
|
|
32
36
|
import { Decorator } from "./Decorator"
|
|
33
37
|
import { Es2pandaAstNodeType } from "./../Es2pandaEnums"
|
|
34
38
|
import { Statement } from "./Statement"
|
|
39
|
+
|
|
35
40
|
export class ClassDeclaration extends Statement {
|
|
36
41
|
constructor(pointer: KNativePointer) {
|
|
37
42
|
assertValidPeer(pointer, 15)
|
|
38
43
|
super(pointer)
|
|
39
44
|
}
|
|
40
45
|
static createClassDeclaration(def?: ClassDefinition): ClassDeclaration {
|
|
41
|
-
|
|
46
|
+
const result: ClassDeclaration = new ClassDeclaration(global.generatedEs2panda._CreateClassDeclaration(global.context, passNode(def)))
|
|
47
|
+
result.setChildrenParentPtr()
|
|
48
|
+
return result
|
|
42
49
|
}
|
|
43
50
|
static updateClassDeclaration(original?: ClassDeclaration, def?: ClassDefinition): ClassDeclaration {
|
|
44
|
-
|
|
51
|
+
const result: ClassDeclaration = new ClassDeclaration(global.generatedEs2panda._UpdateClassDeclaration(global.context, passNode(original), passNode(def)))
|
|
52
|
+
result.setChildrenParentPtr()
|
|
53
|
+
return result
|
|
45
54
|
}
|
|
46
55
|
get definition(): ClassDefinition | undefined {
|
|
47
56
|
return unpackNode(global.generatedEs2panda._ClassDeclarationDefinition(global.context, this.peer))
|
|
48
57
|
}
|
|
58
|
+
/** @deprecated */
|
|
59
|
+
emplaceDecorators(decorators?: Decorator): this {
|
|
60
|
+
global.generatedEs2panda._ClassDeclarationEmplaceDecorators(global.context, this.peer, passNode(decorators))
|
|
61
|
+
return this
|
|
62
|
+
}
|
|
63
|
+
/** @deprecated */
|
|
64
|
+
clearDecorators(): this {
|
|
65
|
+
global.generatedEs2panda._ClassDeclarationClearDecorators(global.context, this.peer)
|
|
66
|
+
return this
|
|
67
|
+
}
|
|
68
|
+
/** @deprecated */
|
|
69
|
+
setValueDecorators(decorators: Decorator | undefined, index: number): this {
|
|
70
|
+
global.generatedEs2panda._ClassDeclarationSetValueDecorators(global.context, this.peer, passNode(decorators), index)
|
|
71
|
+
return this
|
|
72
|
+
}
|
|
49
73
|
get decorators(): readonly Decorator[] {
|
|
50
|
-
return unpackNodeArray(global.generatedEs2panda.
|
|
74
|
+
return unpackNodeArray(global.generatedEs2panda._ClassDeclarationDecorators(global.context, this.peer))
|
|
75
|
+
}
|
|
76
|
+
get decoratorsForUpdate(): readonly Decorator[] {
|
|
77
|
+
return unpackNodeArray(global.generatedEs2panda._ClassDeclarationDecoratorsForUpdate(global.context, this.peer))
|
|
51
78
|
}
|
|
79
|
+
/** @deprecated */
|
|
80
|
+
setDefinition(def?: ClassDefinition): this {
|
|
81
|
+
global.generatedEs2panda._ClassDeclarationSetDefinition(global.context, this.peer, passNode(def))
|
|
82
|
+
return this
|
|
83
|
+
}
|
|
84
|
+
protected readonly brandClassDeclaration: undefined
|
|
52
85
|
}
|
|
53
86
|
export function isClassDeclaration(node: object | undefined): node is ClassDeclaration {
|
|
54
87
|
return node instanceof ClassDeclaration
|
|
55
88
|
}
|
|
56
89
|
if (!nodeByType.has(Es2pandaAstNodeType.AST_NODE_TYPE_CLASS_DECLARATION)) {
|
|
57
90
|
nodeByType.set(Es2pandaAstNodeType.AST_NODE_TYPE_CLASS_DECLARATION, (peer: KNativePointer) => new ClassDeclaration(peer))
|
|
58
|
-
}
|
|
91
|
+
}
|
|
@@ -13,6 +13,10 @@
|
|
|
13
13
|
* limitations under the License.
|
|
14
14
|
*/
|
|
15
15
|
|
|
16
|
+
/*
|
|
17
|
+
* THIS FILE IS AUTOGENERATED BY arktscgen. DO NOT EDIT MANUALLY!
|
|
18
|
+
*/
|
|
19
|
+
|
|
16
20
|
import {
|
|
17
21
|
global,
|
|
18
22
|
passNode,
|
|
@@ -41,22 +45,31 @@ import { TSEnumDeclaration } from "./TSEnumDeclaration"
|
|
|
41
45
|
import { TSTypeParameterDeclaration } from "./TSTypeParameterDeclaration"
|
|
42
46
|
import { TSTypeParameterInstantiation } from "./TSTypeParameterInstantiation"
|
|
43
47
|
import { TypedAstNode } from "./TypedAstNode"
|
|
48
|
+
|
|
44
49
|
export class ClassDefinition extends TypedAstNode {
|
|
45
50
|
constructor(pointer: KNativePointer) {
|
|
46
51
|
assertValidPeer(pointer, 14)
|
|
47
52
|
super(pointer)
|
|
48
53
|
}
|
|
49
54
|
static createClassDefinition(ident: Identifier | undefined, typeParams: TSTypeParameterDeclaration | undefined, superTypeParams: TSTypeParameterInstantiation | undefined, _implements: readonly TSClassImplements[], ctor: MethodDefinition | undefined, superClass: Expression | undefined, body: readonly AstNode[], modifiers: Es2pandaClassDefinitionModifiers, flags: Es2pandaModifierFlags): ClassDefinition {
|
|
50
|
-
|
|
55
|
+
const result: ClassDefinition = new ClassDefinition(global.generatedEs2panda._CreateClassDefinition(global.context, passNode(ident), passNode(typeParams), passNode(superTypeParams), passNodeArray(_implements), _implements.length, passNode(ctor), passNode(superClass), passNodeArray(body), body.length, modifiers, flags))
|
|
56
|
+
result.setChildrenParentPtr()
|
|
57
|
+
return result
|
|
51
58
|
}
|
|
52
59
|
static updateClassDefinition(original: ClassDefinition | undefined, ident: Identifier | undefined, typeParams: TSTypeParameterDeclaration | undefined, superTypeParams: TSTypeParameterInstantiation | undefined, _implements: readonly TSClassImplements[], ctor: MethodDefinition | undefined, superClass: Expression | undefined, body: readonly AstNode[], modifiers: Es2pandaClassDefinitionModifiers, flags: Es2pandaModifierFlags): ClassDefinition {
|
|
53
|
-
|
|
60
|
+
const result: ClassDefinition = new ClassDefinition(global.generatedEs2panda._UpdateClassDefinition(global.context, passNode(original), passNode(ident), passNode(typeParams), passNode(superTypeParams), passNodeArray(_implements), _implements.length, passNode(ctor), passNode(superClass), passNodeArray(body), body.length, modifiers, flags))
|
|
61
|
+
result.setChildrenParentPtr()
|
|
62
|
+
return result
|
|
54
63
|
}
|
|
55
64
|
static update1ClassDefinition(original: ClassDefinition | undefined, ident: Identifier | undefined, body: readonly AstNode[], modifiers: Es2pandaClassDefinitionModifiers, flags: Es2pandaModifierFlags): ClassDefinition {
|
|
56
|
-
|
|
65
|
+
const result: ClassDefinition = new ClassDefinition(global.generatedEs2panda._UpdateClassDefinition1(global.context, passNode(original), passNode(ident), passNodeArray(body), body.length, modifiers, flags))
|
|
66
|
+
result.setChildrenParentPtr()
|
|
67
|
+
return result
|
|
57
68
|
}
|
|
58
69
|
static update2ClassDefinition(original: ClassDefinition | undefined, ident: Identifier | undefined, modifiers: Es2pandaClassDefinitionModifiers, flags: Es2pandaModifierFlags): ClassDefinition {
|
|
59
|
-
|
|
70
|
+
const result: ClassDefinition = new ClassDefinition(global.generatedEs2panda._UpdateClassDefinition2(global.context, passNode(original), passNode(ident), modifiers, flags))
|
|
71
|
+
result.setChildrenParentPtr()
|
|
72
|
+
return result
|
|
60
73
|
}
|
|
61
74
|
get ident(): Identifier | undefined {
|
|
62
75
|
return unpackNode(global.generatedEs2panda._ClassDefinitionIdent(global.context, this.peer))
|
|
@@ -69,11 +82,6 @@ export class ClassDefinition extends TypedAstNode {
|
|
|
69
82
|
get internalName(): string {
|
|
70
83
|
return unpackString(global.generatedEs2panda._ClassDefinitionInternalNameConst(global.context, this.peer))
|
|
71
84
|
}
|
|
72
|
-
/** @deprecated */
|
|
73
|
-
setInternalName(internalName: string): this {
|
|
74
|
-
global.generatedEs2panda._ClassDefinitionSetInternalName(global.context, this.peer, internalName)
|
|
75
|
-
return this
|
|
76
|
-
}
|
|
77
85
|
get super(): Expression | undefined {
|
|
78
86
|
return unpackNode(global.generatedEs2panda._ClassDefinitionSuper(global.context, this.peer))
|
|
79
87
|
}
|
|
@@ -118,6 +126,9 @@ export class ClassDefinition extends TypedAstNode {
|
|
|
118
126
|
get isNamespaceTransformed(): boolean {
|
|
119
127
|
return global.generatedEs2panda._ClassDefinitionIsNamespaceTransformedConst(global.context, this.peer)
|
|
120
128
|
}
|
|
129
|
+
get isLazyImportObjectClass(): boolean {
|
|
130
|
+
return global.generatedEs2panda._ClassDefinitionIsLazyImportObjectClassConst(global.context, this.peer)
|
|
131
|
+
}
|
|
121
132
|
get isFromStruct(): boolean {
|
|
122
133
|
return global.generatedEs2panda._ClassDefinitionIsFromStructConst(global.context, this.peer)
|
|
123
134
|
}
|
|
@@ -150,6 +161,11 @@ export class ClassDefinition extends TypedAstNode {
|
|
|
150
161
|
return this
|
|
151
162
|
}
|
|
152
163
|
/** @deprecated */
|
|
164
|
+
setLazyImportObjectClass(): this {
|
|
165
|
+
global.generatedEs2panda._ClassDefinitionSetLazyImportObjectClass(global.context, this.peer)
|
|
166
|
+
return this
|
|
167
|
+
}
|
|
168
|
+
/** @deprecated */
|
|
153
169
|
setFromStructModifier(): this {
|
|
154
170
|
global.generatedEs2panda._ClassDefinitionSetFromStructModifier(global.context, this.peer)
|
|
155
171
|
return this
|
|
@@ -158,37 +174,16 @@ export class ClassDefinition extends TypedAstNode {
|
|
|
158
174
|
return global.generatedEs2panda._ClassDefinitionModifiersConst(global.context, this.peer)
|
|
159
175
|
}
|
|
160
176
|
/** @deprecated */
|
|
161
|
-
setModifiers(modifiers: Es2pandaClassDefinitionModifiers): this {
|
|
162
|
-
global.generatedEs2panda._ClassDefinitionSetModifiers(global.context, this.peer, modifiers)
|
|
163
|
-
return this
|
|
164
|
-
}
|
|
165
|
-
/** @deprecated */
|
|
166
177
|
addProperties(body: readonly AstNode[]): this {
|
|
167
178
|
global.generatedEs2panda._ClassDefinitionAddProperties(global.context, this.peer, passNodeArray(body), body.length)
|
|
168
179
|
return this
|
|
169
180
|
}
|
|
170
|
-
get body(): readonly AstNode[] {
|
|
171
|
-
return unpackNodeArray(global.generatedEs2panda._ClassDefinitionBody(global.context, this.peer))
|
|
172
|
-
}
|
|
173
181
|
get ctor(): MethodDefinition | undefined {
|
|
174
182
|
return unpackNode(global.generatedEs2panda._ClassDefinitionCtor(global.context, this.peer))
|
|
175
183
|
}
|
|
176
|
-
/** @deprecated */
|
|
177
|
-
setCtor(ctor?: MethodDefinition): this {
|
|
178
|
-
global.generatedEs2panda._ClassDefinitionSetCtor(global.context, this.peer, passNode(ctor))
|
|
179
|
-
return this
|
|
180
|
-
}
|
|
181
|
-
get implements(): readonly TSClassImplements[] {
|
|
182
|
-
return unpackNodeArray(global.generatedEs2panda._ClassDefinitionImplements(global.context, this.peer))
|
|
183
|
-
}
|
|
184
184
|
get typeParams(): TSTypeParameterDeclaration | undefined {
|
|
185
185
|
return unpackNode(global.generatedEs2panda._ClassDefinitionTypeParams(global.context, this.peer))
|
|
186
186
|
}
|
|
187
|
-
/** @deprecated */
|
|
188
|
-
setTypeParams(typeParams?: TSTypeParameterDeclaration): this {
|
|
189
|
-
global.generatedEs2panda._ClassDefinitionSetTypeParams(global.context, this.peer, passNode(typeParams))
|
|
190
|
-
return this
|
|
191
|
-
}
|
|
192
187
|
get superTypeParams(): TSTypeParameterInstantiation | undefined {
|
|
193
188
|
return unpackNode(global.generatedEs2panda._ClassDefinitionSuperTypeParams(global.context, this.peer))
|
|
194
189
|
}
|
|
@@ -198,25 +193,23 @@ export class ClassDefinition extends TypedAstNode {
|
|
|
198
193
|
get localIndex(): number {
|
|
199
194
|
return global.generatedEs2panda._ClassDefinitionLocalIndexConst(global.context, this.peer)
|
|
200
195
|
}
|
|
201
|
-
get
|
|
202
|
-
return
|
|
196
|
+
get functionalReferenceReferencedMethod(): MethodDefinition | undefined {
|
|
197
|
+
return unpackNode(global.generatedEs2panda._ClassDefinitionFunctionalReferenceReferencedMethodConst(global.context, this.peer))
|
|
203
198
|
}
|
|
204
199
|
/** @deprecated */
|
|
205
|
-
|
|
206
|
-
global.generatedEs2panda.
|
|
200
|
+
setFunctionalReferenceReferencedMethod(functionalReferenceReferencedMethod?: MethodDefinition): this {
|
|
201
|
+
global.generatedEs2panda._ClassDefinitionSetFunctionalReferenceReferencedMethod(global.context, this.peer, passNode(functionalReferenceReferencedMethod))
|
|
207
202
|
return this
|
|
208
203
|
}
|
|
204
|
+
get localPrefix(): string {
|
|
205
|
+
return unpackString(global.generatedEs2panda._ClassDefinitionLocalPrefixConst(global.context, this.peer))
|
|
206
|
+
}
|
|
209
207
|
get origEnumDecl(): TSEnumDeclaration | undefined {
|
|
210
208
|
return unpackNode(global.generatedEs2panda._ClassDefinitionOrigEnumDeclConst(global.context, this.peer))
|
|
211
209
|
}
|
|
212
210
|
get anonClass(): ClassDeclaration | undefined {
|
|
213
211
|
return unpackNode(global.generatedEs2panda._ClassDefinitionGetAnonClass(global.context, this.peer))
|
|
214
212
|
}
|
|
215
|
-
/** @deprecated */
|
|
216
|
-
setAnonClass(anonClass?: ClassDeclaration): this {
|
|
217
|
-
global.generatedEs2panda._ClassDefinitionSetAnonClass(global.context, this.peer, passNode(anonClass))
|
|
218
|
-
return this
|
|
219
|
-
}
|
|
220
213
|
get hasPrivateMethod(): boolean {
|
|
221
214
|
return global.generatedEs2panda._ClassDefinitionHasPrivateMethodConst(global.context, this.peer)
|
|
222
215
|
}
|
|
@@ -231,18 +224,119 @@ export class ClassDefinition extends TypedAstNode {
|
|
|
231
224
|
global.generatedEs2panda._ClassDefinitionAddToExportedClasses(global.context, this.peer, passNode(cls))
|
|
232
225
|
return this
|
|
233
226
|
}
|
|
227
|
+
/** @deprecated */
|
|
228
|
+
setModifiers(modifiers: Es2pandaClassDefinitionModifiers): this {
|
|
229
|
+
global.generatedEs2panda._ClassDefinitionSetModifiers(global.context, this.peer, modifiers)
|
|
230
|
+
return this
|
|
231
|
+
}
|
|
232
|
+
/** @deprecated */
|
|
233
|
+
emplaceBody(body?: AstNode): this {
|
|
234
|
+
global.generatedEs2panda._ClassDefinitionEmplaceBody(global.context, this.peer, passNode(body))
|
|
235
|
+
return this
|
|
236
|
+
}
|
|
237
|
+
/** @deprecated */
|
|
238
|
+
clearBody(): this {
|
|
239
|
+
global.generatedEs2panda._ClassDefinitionClearBody(global.context, this.peer)
|
|
240
|
+
return this
|
|
241
|
+
}
|
|
242
|
+
/** @deprecated */
|
|
243
|
+
setValueBody(body: AstNode | undefined, index: number): this {
|
|
244
|
+
global.generatedEs2panda._ClassDefinitionSetValueBody(global.context, this.peer, passNode(body), index)
|
|
245
|
+
return this
|
|
246
|
+
}
|
|
247
|
+
get body(): readonly AstNode[] {
|
|
248
|
+
return unpackNodeArray(global.generatedEs2panda._ClassDefinitionBody(global.context, this.peer))
|
|
249
|
+
}
|
|
250
|
+
get bodyForUpdate(): readonly AstNode[] {
|
|
251
|
+
return unpackNodeArray(global.generatedEs2panda._ClassDefinitionBodyForUpdate(global.context, this.peer))
|
|
252
|
+
}
|
|
253
|
+
/** @deprecated */
|
|
254
|
+
emplaceImplements(_implements?: TSClassImplements): this {
|
|
255
|
+
global.generatedEs2panda._ClassDefinitionEmplaceImplements(global.context, this.peer, passNode(_implements))
|
|
256
|
+
return this
|
|
257
|
+
}
|
|
258
|
+
/** @deprecated */
|
|
259
|
+
clearImplements(): this {
|
|
260
|
+
global.generatedEs2panda._ClassDefinitionClearImplements(global.context, this.peer)
|
|
261
|
+
return this
|
|
262
|
+
}
|
|
263
|
+
/** @deprecated */
|
|
264
|
+
setValueImplements(_implements: TSClassImplements | undefined, index: number): this {
|
|
265
|
+
global.generatedEs2panda._ClassDefinitionSetValueImplements(global.context, this.peer, passNode(_implements), index)
|
|
266
|
+
return this
|
|
267
|
+
}
|
|
268
|
+
get implements(): readonly TSClassImplements[] {
|
|
269
|
+
return unpackNodeArray(global.generatedEs2panda._ClassDefinitionImplements(global.context, this.peer))
|
|
270
|
+
}
|
|
271
|
+
get implementsForUpdate(): readonly TSClassImplements[] {
|
|
272
|
+
return unpackNodeArray(global.generatedEs2panda._ClassDefinitionImplementsForUpdate(global.context, this.peer))
|
|
273
|
+
}
|
|
274
|
+
/** @deprecated */
|
|
275
|
+
setCtor(ctor?: MethodDefinition): this {
|
|
276
|
+
global.generatedEs2panda._ClassDefinitionSetCtor(global.context, this.peer, passNode(ctor))
|
|
277
|
+
return this
|
|
278
|
+
}
|
|
279
|
+
/** @deprecated */
|
|
280
|
+
setTypeParams(typeParams?: TSTypeParameterDeclaration): this {
|
|
281
|
+
global.generatedEs2panda._ClassDefinitionSetTypeParams(global.context, this.peer, passNode(typeParams))
|
|
282
|
+
return this
|
|
283
|
+
}
|
|
284
|
+
/** @deprecated */
|
|
285
|
+
setOrigEnumDecl(origEnumDecl?: TSEnumDeclaration): this {
|
|
286
|
+
global.generatedEs2panda._ClassDefinitionSetOrigEnumDecl(global.context, this.peer, passNode(origEnumDecl))
|
|
287
|
+
return this
|
|
288
|
+
}
|
|
289
|
+
/** @deprecated */
|
|
290
|
+
setAnonClass(anonClass?: ClassDeclaration): this {
|
|
291
|
+
global.generatedEs2panda._ClassDefinitionSetAnonClass(global.context, this.peer, passNode(anonClass))
|
|
292
|
+
return this
|
|
293
|
+
}
|
|
294
|
+
/** @deprecated */
|
|
295
|
+
setInternalName(internalName: string): this {
|
|
296
|
+
global.generatedEs2panda._ClassDefinitionSetInternalName(global.context, this.peer, internalName)
|
|
297
|
+
return this
|
|
298
|
+
}
|
|
299
|
+
/** @deprecated */
|
|
300
|
+
emplaceAnnotations(source?: AnnotationUsage): this {
|
|
301
|
+
global.generatedEs2panda._ClassDefinitionEmplaceAnnotations(global.context, this.peer, passNode(source))
|
|
302
|
+
return this
|
|
303
|
+
}
|
|
304
|
+
/** @deprecated */
|
|
305
|
+
clearAnnotations(): this {
|
|
306
|
+
global.generatedEs2panda._ClassDefinitionClearAnnotations(global.context, this.peer)
|
|
307
|
+
return this
|
|
308
|
+
}
|
|
309
|
+
/** @deprecated */
|
|
310
|
+
setValueAnnotations(source: AnnotationUsage | undefined, index: number): this {
|
|
311
|
+
global.generatedEs2panda._ClassDefinitionSetValueAnnotations(global.context, this.peer, passNode(source), index)
|
|
312
|
+
return this
|
|
313
|
+
}
|
|
314
|
+
get annotationsForUpdate(): readonly AnnotationUsage[] {
|
|
315
|
+
return unpackNodeArray(global.generatedEs2panda._ClassDefinitionAnnotationsForUpdate(global.context, this.peer))
|
|
316
|
+
}
|
|
234
317
|
get annotations(): readonly AnnotationUsage[] {
|
|
235
318
|
return unpackNodeArray(global.generatedEs2panda._ClassDefinitionAnnotations(global.context, this.peer))
|
|
236
319
|
}
|
|
237
320
|
/** @deprecated */
|
|
238
|
-
setAnnotations(
|
|
239
|
-
global.generatedEs2panda._ClassDefinitionSetAnnotations(global.context, this.peer, passNodeArray(
|
|
321
|
+
setAnnotations(annotationList: readonly AnnotationUsage[]): this {
|
|
322
|
+
global.generatedEs2panda._ClassDefinitionSetAnnotations(global.context, this.peer, passNodeArray(annotationList), annotationList.length)
|
|
240
323
|
return this
|
|
241
324
|
}
|
|
325
|
+
/** @deprecated */
|
|
326
|
+
setAnnotations1(annotationList: readonly AnnotationUsage[]): this {
|
|
327
|
+
global.generatedEs2panda._ClassDefinitionSetAnnotations1(global.context, this.peer, passNodeArray(annotationList), annotationList.length)
|
|
328
|
+
return this
|
|
329
|
+
}
|
|
330
|
+
/** @deprecated */
|
|
331
|
+
addAnnotations(annotations?: AnnotationUsage): this {
|
|
332
|
+
global.generatedEs2panda._ClassDefinitionAddAnnotations(global.context, this.peer, passNode(annotations))
|
|
333
|
+
return this
|
|
334
|
+
}
|
|
335
|
+
protected readonly brandClassDefinition: undefined
|
|
242
336
|
}
|
|
243
337
|
export function isClassDefinition(node: object | undefined): node is ClassDefinition {
|
|
244
338
|
return node instanceof ClassDefinition
|
|
245
339
|
}
|
|
246
340
|
if (!nodeByType.has(Es2pandaAstNodeType.AST_NODE_TYPE_CLASS_DEFINITION)) {
|
|
247
341
|
nodeByType.set(Es2pandaAstNodeType.AST_NODE_TYPE_CLASS_DEFINITION, (peer: KNativePointer) => new ClassDefinition(peer))
|
|
248
|
-
}
|
|
342
|
+
}
|
|
@@ -13,6 +13,10 @@
|
|
|
13
13
|
* limitations under the License.
|
|
14
14
|
*/
|
|
15
15
|
|
|
16
|
+
/*
|
|
17
|
+
* THIS FILE IS AUTOGENERATED BY arktscgen. DO NOT EDIT MANUALLY!
|
|
18
|
+
*/
|
|
19
|
+
|
|
16
20
|
import {
|
|
17
21
|
global,
|
|
18
22
|
passNode,
|
|
@@ -33,6 +37,7 @@ import { Expression } from "./Expression"
|
|
|
33
37
|
import { Identifier } from "./Identifier"
|
|
34
38
|
import { TSEnumMember } from "./TSEnumMember"
|
|
35
39
|
import { TypedStatement } from "./TypedStatement"
|
|
40
|
+
|
|
36
41
|
export class ClassElement extends TypedStatement {
|
|
37
42
|
constructor(pointer: KNativePointer) {
|
|
38
43
|
super(pointer)
|
|
@@ -62,9 +67,6 @@ export class ClassElement extends TypedStatement {
|
|
|
62
67
|
get isPrivateElement(): boolean {
|
|
63
68
|
return global.generatedEs2panda._ClassElementIsPrivateElementConst(global.context, this.peer)
|
|
64
69
|
}
|
|
65
|
-
get decorators(): readonly Decorator[] {
|
|
66
|
-
return unpackNodeArray(global.generatedEs2panda._ClassElementDecoratorsConst(global.context, this.peer))
|
|
67
|
-
}
|
|
68
70
|
get isComputed(): boolean {
|
|
69
71
|
return global.generatedEs2panda._ClassElementIsComputedConst(global.context, this.peer)
|
|
70
72
|
}
|
|
@@ -73,7 +75,29 @@ export class ClassElement extends TypedStatement {
|
|
|
73
75
|
global.generatedEs2panda._ClassElementAddDecorator(global.context, this.peer, passNode(decorator))
|
|
74
76
|
return this
|
|
75
77
|
}
|
|
78
|
+
/** @deprecated */
|
|
79
|
+
emplaceDecorators(decorators?: Decorator): this {
|
|
80
|
+
global.generatedEs2panda._ClassElementEmplaceDecorators(global.context, this.peer, passNode(decorators))
|
|
81
|
+
return this
|
|
82
|
+
}
|
|
83
|
+
/** @deprecated */
|
|
84
|
+
clearDecorators(): this {
|
|
85
|
+
global.generatedEs2panda._ClassElementClearDecorators(global.context, this.peer)
|
|
86
|
+
return this
|
|
87
|
+
}
|
|
88
|
+
/** @deprecated */
|
|
89
|
+
setValueDecorators(decorators: Decorator | undefined, index: number): this {
|
|
90
|
+
global.generatedEs2panda._ClassElementSetValueDecorators(global.context, this.peer, passNode(decorators), index)
|
|
91
|
+
return this
|
|
92
|
+
}
|
|
93
|
+
get decorators(): readonly Decorator[] {
|
|
94
|
+
return unpackNodeArray(global.generatedEs2panda._ClassElementDecorators(global.context, this.peer))
|
|
95
|
+
}
|
|
96
|
+
get decoratorsForUpdate(): readonly Decorator[] {
|
|
97
|
+
return unpackNodeArray(global.generatedEs2panda._ClassElementDecoratorsForUpdate(global.context, this.peer))
|
|
98
|
+
}
|
|
99
|
+
protected readonly brandClassElement: undefined
|
|
76
100
|
}
|
|
77
101
|
export function isClassElement(node: object | undefined): node is ClassElement {
|
|
78
102
|
return node instanceof ClassElement
|
|
79
|
-
}
|
|
103
|
+
}
|
|
@@ -13,6 +13,10 @@
|
|
|
13
13
|
* limitations under the License.
|
|
14
14
|
*/
|
|
15
15
|
|
|
16
|
+
/*
|
|
17
|
+
* THIS FILE IS AUTOGENERATED BY arktscgen. DO NOT EDIT MANUALLY!
|
|
18
|
+
*/
|
|
19
|
+
|
|
16
20
|
import {
|
|
17
21
|
global,
|
|
18
22
|
passNode,
|
|
@@ -31,24 +35,30 @@ import {
|
|
|
31
35
|
import { ClassDefinition } from "./ClassDefinition"
|
|
32
36
|
import { Es2pandaAstNodeType } from "./../Es2pandaEnums"
|
|
33
37
|
import { Expression } from "./Expression"
|
|
38
|
+
|
|
34
39
|
export class ClassExpression extends Expression {
|
|
35
40
|
constructor(pointer: KNativePointer) {
|
|
36
41
|
assertValidPeer(pointer, 16)
|
|
37
42
|
super(pointer)
|
|
38
43
|
}
|
|
39
44
|
static createClassExpression(def?: ClassDefinition): ClassExpression {
|
|
40
|
-
|
|
45
|
+
const result: ClassExpression = new ClassExpression(global.generatedEs2panda._CreateClassExpression(global.context, passNode(def)))
|
|
46
|
+
result.setChildrenParentPtr()
|
|
47
|
+
return result
|
|
41
48
|
}
|
|
42
49
|
static updateClassExpression(original?: ClassExpression, def?: ClassDefinition): ClassExpression {
|
|
43
|
-
|
|
50
|
+
const result: ClassExpression = new ClassExpression(global.generatedEs2panda._UpdateClassExpression(global.context, passNode(original), passNode(def)))
|
|
51
|
+
result.setChildrenParentPtr()
|
|
52
|
+
return result
|
|
44
53
|
}
|
|
45
54
|
get definition(): ClassDefinition | undefined {
|
|
46
55
|
return unpackNode(global.generatedEs2panda._ClassExpressionDefinitionConst(global.context, this.peer))
|
|
47
56
|
}
|
|
57
|
+
protected readonly brandClassExpression: undefined
|
|
48
58
|
}
|
|
49
59
|
export function isClassExpression(node: object | undefined): node is ClassExpression {
|
|
50
60
|
return node instanceof ClassExpression
|
|
51
61
|
}
|
|
52
62
|
if (!nodeByType.has(Es2pandaAstNodeType.AST_NODE_TYPE_CLASS_EXPRESSION)) {
|
|
53
63
|
nodeByType.set(Es2pandaAstNodeType.AST_NODE_TYPE_CLASS_EXPRESSION, (peer: KNativePointer) => new ClassExpression(peer))
|
|
54
|
-
}
|
|
64
|
+
}
|
|
@@ -13,6 +13,10 @@
|
|
|
13
13
|
* limitations under the License.
|
|
14
14
|
*/
|
|
15
15
|
|
|
16
|
+
/*
|
|
17
|
+
* THIS FILE IS AUTOGENERATED BY arktscgen. DO NOT EDIT MANUALLY!
|
|
18
|
+
*/
|
|
19
|
+
|
|
16
20
|
import {
|
|
17
21
|
global,
|
|
18
22
|
passNode,
|
|
@@ -34,16 +38,21 @@ import { Es2pandaAstNodeType } from "./../Es2pandaEnums"
|
|
|
34
38
|
import { Es2pandaModifierFlags } from "./../Es2pandaEnums"
|
|
35
39
|
import { Expression } from "./Expression"
|
|
36
40
|
import { TypeNode } from "./TypeNode"
|
|
41
|
+
|
|
37
42
|
export class ClassProperty extends ClassElement {
|
|
38
43
|
constructor(pointer: KNativePointer) {
|
|
39
44
|
assertValidPeer(pointer, 17)
|
|
40
45
|
super(pointer)
|
|
41
46
|
}
|
|
42
47
|
static createClassProperty(key: Expression | undefined, value: Expression | undefined, typeAnnotation: TypeNode | undefined, modifiers: Es2pandaModifierFlags, isComputed: boolean): ClassProperty {
|
|
43
|
-
|
|
48
|
+
const result: ClassProperty = new ClassProperty(global.generatedEs2panda._CreateClassProperty(global.context, passNode(key), passNode(value), passNode(typeAnnotation), modifiers, isComputed))
|
|
49
|
+
result.setChildrenParentPtr()
|
|
50
|
+
return result
|
|
44
51
|
}
|
|
45
52
|
static updateClassProperty(original: ClassProperty | undefined, key: Expression | undefined, value: Expression | undefined, typeAnnotation: TypeNode | undefined, modifiers: Es2pandaModifierFlags, isComputed: boolean): ClassProperty {
|
|
46
|
-
|
|
53
|
+
const result: ClassProperty = new ClassProperty(global.generatedEs2panda._UpdateClassProperty(global.context, passNode(original), passNode(key), passNode(value), passNode(typeAnnotation), modifiers, isComputed))
|
|
54
|
+
result.setChildrenParentPtr()
|
|
55
|
+
return result
|
|
47
56
|
}
|
|
48
57
|
get isDefaultAccessModifier(): boolean {
|
|
49
58
|
return global.generatedEs2panda._ClassPropertyIsDefaultAccessModifierConst(global.context, this.peer)
|
|
@@ -69,18 +78,47 @@ export class ClassProperty extends ClassElement {
|
|
|
69
78
|
global.generatedEs2panda._ClassPropertySetInitInStaticBlock(global.context, this.peer, needInitInStaticBlock)
|
|
70
79
|
return this
|
|
71
80
|
}
|
|
81
|
+
/** @deprecated */
|
|
82
|
+
emplaceAnnotations(source?: AnnotationUsage): this {
|
|
83
|
+
global.generatedEs2panda._ClassPropertyEmplaceAnnotations(global.context, this.peer, passNode(source))
|
|
84
|
+
return this
|
|
85
|
+
}
|
|
86
|
+
/** @deprecated */
|
|
87
|
+
clearAnnotations(): this {
|
|
88
|
+
global.generatedEs2panda._ClassPropertyClearAnnotations(global.context, this.peer)
|
|
89
|
+
return this
|
|
90
|
+
}
|
|
91
|
+
/** @deprecated */
|
|
92
|
+
setValueAnnotations(source: AnnotationUsage | undefined, index: number): this {
|
|
93
|
+
global.generatedEs2panda._ClassPropertySetValueAnnotations(global.context, this.peer, passNode(source), index)
|
|
94
|
+
return this
|
|
95
|
+
}
|
|
96
|
+
get annotationsForUpdate(): readonly AnnotationUsage[] {
|
|
97
|
+
return unpackNodeArray(global.generatedEs2panda._ClassPropertyAnnotationsForUpdate(global.context, this.peer))
|
|
98
|
+
}
|
|
72
99
|
get annotations(): readonly AnnotationUsage[] {
|
|
73
100
|
return unpackNodeArray(global.generatedEs2panda._ClassPropertyAnnotations(global.context, this.peer))
|
|
74
101
|
}
|
|
75
102
|
/** @deprecated */
|
|
76
|
-
setAnnotations(
|
|
77
|
-
global.generatedEs2panda._ClassPropertySetAnnotations(global.context, this.peer, passNodeArray(
|
|
103
|
+
setAnnotations(annotationList: readonly AnnotationUsage[]): this {
|
|
104
|
+
global.generatedEs2panda._ClassPropertySetAnnotations(global.context, this.peer, passNodeArray(annotationList), annotationList.length)
|
|
105
|
+
return this
|
|
106
|
+
}
|
|
107
|
+
/** @deprecated */
|
|
108
|
+
setAnnotations1(annotationList: readonly AnnotationUsage[]): this {
|
|
109
|
+
global.generatedEs2panda._ClassPropertySetAnnotations1(global.context, this.peer, passNodeArray(annotationList), annotationList.length)
|
|
78
110
|
return this
|
|
79
111
|
}
|
|
112
|
+
/** @deprecated */
|
|
113
|
+
addAnnotations(annotations?: AnnotationUsage): this {
|
|
114
|
+
global.generatedEs2panda._ClassPropertyAddAnnotations(global.context, this.peer, passNode(annotations))
|
|
115
|
+
return this
|
|
116
|
+
}
|
|
117
|
+
protected readonly brandClassProperty: undefined
|
|
80
118
|
}
|
|
81
119
|
export function isClassProperty(node: object | undefined): node is ClassProperty {
|
|
82
120
|
return node instanceof ClassProperty
|
|
83
121
|
}
|
|
84
122
|
if (!nodeByType.has(Es2pandaAstNodeType.AST_NODE_TYPE_CLASS_PROPERTY)) {
|
|
85
123
|
nodeByType.set(Es2pandaAstNodeType.AST_NODE_TYPE_CLASS_PROPERTY, (peer: KNativePointer) => new ClassProperty(peer))
|
|
86
|
-
}
|
|
124
|
+
}
|
|
@@ -13,6 +13,10 @@
|
|
|
13
13
|
* limitations under the License.
|
|
14
14
|
*/
|
|
15
15
|
|
|
16
|
+
/*
|
|
17
|
+
* THIS FILE IS AUTOGENERATED BY arktscgen. DO NOT EDIT MANUALLY!
|
|
18
|
+
*/
|
|
19
|
+
|
|
16
20
|
import {
|
|
17
21
|
global,
|
|
18
22
|
passNode,
|
|
@@ -32,16 +36,21 @@ import { ClassElement } from "./ClassElement"
|
|
|
32
36
|
import { Es2pandaAstNodeType } from "./../Es2pandaEnums"
|
|
33
37
|
import { Expression } from "./Expression"
|
|
34
38
|
import { ScriptFunction } from "./ScriptFunction"
|
|
39
|
+
|
|
35
40
|
export class ClassStaticBlock extends ClassElement {
|
|
36
41
|
constructor(pointer: KNativePointer) {
|
|
37
42
|
assertValidPeer(pointer, 18)
|
|
38
43
|
super(pointer)
|
|
39
44
|
}
|
|
40
45
|
static createClassStaticBlock(value?: Expression): ClassStaticBlock {
|
|
41
|
-
|
|
46
|
+
const result: ClassStaticBlock = new ClassStaticBlock(global.generatedEs2panda._CreateClassStaticBlock(global.context, passNode(value)))
|
|
47
|
+
result.setChildrenParentPtr()
|
|
48
|
+
return result
|
|
42
49
|
}
|
|
43
50
|
static updateClassStaticBlock(original?: ClassStaticBlock, value?: Expression): ClassStaticBlock {
|
|
44
|
-
|
|
51
|
+
const result: ClassStaticBlock = new ClassStaticBlock(global.generatedEs2panda._UpdateClassStaticBlock(global.context, passNode(original), passNode(value)))
|
|
52
|
+
result.setChildrenParentPtr()
|
|
53
|
+
return result
|
|
45
54
|
}
|
|
46
55
|
get function(): ScriptFunction | undefined {
|
|
47
56
|
return unpackNode(global.generatedEs2panda._ClassStaticBlockFunction(global.context, this.peer))
|
|
@@ -49,10 +58,11 @@ export class ClassStaticBlock extends ClassElement {
|
|
|
49
58
|
get name(): string {
|
|
50
59
|
return unpackString(global.generatedEs2panda._ClassStaticBlockNameConst(global.context, this.peer))
|
|
51
60
|
}
|
|
61
|
+
protected readonly brandClassStaticBlock: undefined
|
|
52
62
|
}
|
|
53
63
|
export function isClassStaticBlock(node: object | undefined): node is ClassStaticBlock {
|
|
54
64
|
return node instanceof ClassStaticBlock
|
|
55
65
|
}
|
|
56
66
|
if (!nodeByType.has(Es2pandaAstNodeType.AST_NODE_TYPE_CLASS_STATIC_BLOCK)) {
|
|
57
67
|
nodeByType.set(Es2pandaAstNodeType.AST_NODE_TYPE_CLASS_STATIC_BLOCK, (peer: KNativePointer) => new ClassStaticBlock(peer))
|
|
58
|
-
}
|
|
68
|
+
}
|
|
@@ -13,6 +13,10 @@
|
|
|
13
13
|
* limitations under the License.
|
|
14
14
|
*/
|
|
15
15
|
|
|
16
|
+
/*
|
|
17
|
+
* THIS FILE IS AUTOGENERATED BY arktscgen. DO NOT EDIT MANUALLY!
|
|
18
|
+
*/
|
|
19
|
+
|
|
16
20
|
import {
|
|
17
21
|
global,
|
|
18
22
|
passNode,
|
|
@@ -28,8 +32,10 @@ import {
|
|
|
28
32
|
unpackString
|
|
29
33
|
} from "../../reexport-for-generated"
|
|
30
34
|
|
|
35
|
+
|
|
31
36
|
export class CodeGen extends ArktsObject {
|
|
32
37
|
constructor(pointer: KNativePointer) {
|
|
33
38
|
super(pointer)
|
|
34
39
|
}
|
|
35
|
-
|
|
40
|
+
protected readonly brandCodeGen: undefined
|
|
41
|
+
}
|
|
@@ -13,6 +13,10 @@
|
|
|
13
13
|
* limitations under the License.
|
|
14
14
|
*/
|
|
15
15
|
|
|
16
|
+
/*
|
|
17
|
+
* THIS FILE IS AUTOGENERATED BY arktscgen. DO NOT EDIT MANUALLY!
|
|
18
|
+
*/
|
|
19
|
+
|
|
16
20
|
import {
|
|
17
21
|
global,
|
|
18
22
|
passNode,
|
|
@@ -30,16 +34,21 @@ import {
|
|
|
30
34
|
|
|
31
35
|
import { Es2pandaAstNodeType } from "./../Es2pandaEnums"
|
|
32
36
|
import { Expression } from "./Expression"
|
|
37
|
+
|
|
33
38
|
export class ConditionalExpression extends Expression {
|
|
34
39
|
constructor(pointer: KNativePointer) {
|
|
35
40
|
assertValidPeer(pointer, 19)
|
|
36
41
|
super(pointer)
|
|
37
42
|
}
|
|
38
43
|
static createConditionalExpression(test?: Expression, consequent?: Expression, alternate?: Expression): ConditionalExpression {
|
|
39
|
-
|
|
44
|
+
const result: ConditionalExpression = new ConditionalExpression(global.generatedEs2panda._CreateConditionalExpression(global.context, passNode(test), passNode(consequent), passNode(alternate)))
|
|
45
|
+
result.setChildrenParentPtr()
|
|
46
|
+
return result
|
|
40
47
|
}
|
|
41
48
|
static updateConditionalExpression(original?: ConditionalExpression, test?: Expression, consequent?: Expression, alternate?: Expression): ConditionalExpression {
|
|
42
|
-
|
|
49
|
+
const result: ConditionalExpression = new ConditionalExpression(global.generatedEs2panda._UpdateConditionalExpression(global.context, passNode(original), passNode(test), passNode(consequent), passNode(alternate)))
|
|
50
|
+
result.setChildrenParentPtr()
|
|
51
|
+
return result
|
|
43
52
|
}
|
|
44
53
|
get test(): Expression | undefined {
|
|
45
54
|
return unpackNode(global.generatedEs2panda._ConditionalExpressionTest(global.context, this.peer))
|
|
@@ -65,10 +74,11 @@ export class ConditionalExpression extends Expression {
|
|
|
65
74
|
global.generatedEs2panda._ConditionalExpressionSetAlternate(global.context, this.peer, passNode(expr))
|
|
66
75
|
return this
|
|
67
76
|
}
|
|
77
|
+
protected readonly brandConditionalExpression: undefined
|
|
68
78
|
}
|
|
69
79
|
export function isConditionalExpression(node: object | undefined): node is ConditionalExpression {
|
|
70
80
|
return node instanceof ConditionalExpression
|
|
71
81
|
}
|
|
72
82
|
if (!nodeByType.has(Es2pandaAstNodeType.AST_NODE_TYPE_CONDITIONAL_EXPRESSION)) {
|
|
73
83
|
nodeByType.set(Es2pandaAstNodeType.AST_NODE_TYPE_CONDITIONAL_EXPRESSION, (peer: KNativePointer) => new ConditionalExpression(peer))
|
|
74
|
-
}
|
|
84
|
+
}
|