1/* 2 * Copyright (c) 2025 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16import { 17 global, 18 passNode, 19 passNodeArray, 20 unpackNonNullableNode, 21 unpackNode, 22 unpackNodeArray, 23 assertValidPeer, 24 AstNode, 25 Es2pandaAstNodeType, 26 KNativePointer, 27 nodeByType, 28 ArktsObject, 29 unpackString 30} from "../../reexport-for-generated" 31 32import { AnnotatedStatement } from "./AnnotatedStatement" 33import { Identifier } from "./Identifier" 34import { TSTypeParameterDeclaration } from "./TSTypeParameterDeclaration" 35import { TypeNode } from "./TypeNode" 36import { Decorator } from "./Decorator" 37import { AnnotationUsage } from "./AnnotationUsage" 38export class TSTypeAliasDeclaration extends AnnotatedStatement { 39 constructor(pointer: KNativePointer) { 40 assertValidPeer(pointer, Es2pandaAstNodeType.AST_NODE_TYPE_TS_TYPE_ALIAS_DECLARATION) 41 super(pointer) 42 43 } 44 static createTSTypeAliasDeclaration(id?: Identifier, typeParams?: TSTypeParameterDeclaration, typeAnnotation?: TypeNode): TSTypeAliasDeclaration { 45 return new TSTypeAliasDeclaration(global.generatedEs2panda._CreateTSTypeAliasDeclaration(global.context, passNode(id), passNode(typeParams), passNode(typeAnnotation))) 46 } 47 static updateTSTypeAliasDeclaration(original?: TSTypeAliasDeclaration, id?: Identifier, typeParams?: TSTypeParameterDeclaration, typeAnnotation?: TypeNode): TSTypeAliasDeclaration { 48 return new TSTypeAliasDeclaration(global.generatedEs2panda._UpdateTSTypeAliasDeclaration(global.context, passNode(original), passNode(id), passNode(typeParams), passNode(typeAnnotation))) 49 } 50 static create1TSTypeAliasDeclaration(id?: Identifier): TSTypeAliasDeclaration { 51 return new TSTypeAliasDeclaration(global.generatedEs2panda._CreateTSTypeAliasDeclaration1(global.context, passNode(id))) 52 } 53 static update1TSTypeAliasDeclaration(original?: TSTypeAliasDeclaration, id?: Identifier): TSTypeAliasDeclaration { 54 return new TSTypeAliasDeclaration(global.generatedEs2panda._UpdateTSTypeAliasDeclaration1(global.context, passNode(original), passNode(id))) 55 } 56 get id(): Identifier | undefined { 57 return unpackNode(global.generatedEs2panda._TSTypeAliasDeclarationIdConst(global.context, this.peer)) 58 } 59 get typeParams(): TSTypeParameterDeclaration | undefined { 60 return unpackNode(global.generatedEs2panda._TSTypeAliasDeclarationTypeParamsConst(global.context, this.peer)) 61 } 62 get decorators(): readonly Decorator[] { 63 return unpackNodeArray(global.generatedEs2panda._TSTypeAliasDeclarationDecoratorsConst(global.context, this.peer)) 64 } 65 /** @deprecated */ 66 setTypeParameters(typeParams: TSTypeParameterDeclaration): this { 67 global.generatedEs2panda._TSTypeAliasDeclarationSetTypeParameters(global.context, this.peer, passNode(typeParams)) 68 return this 69 } 70 get annotations(): readonly AnnotationUsage[] { 71 return unpackNodeArray(global.generatedEs2panda._TSTypeAliasDeclarationAnnotationsConst(global.context, this.peer)) 72 } 73 /** @deprecated */ 74 setAnnotations(annotations: readonly AnnotationUsage[]): this { 75 global.generatedEs2panda._TSTypeAliasDeclarationSetAnnotations(global.context, this.peer, passNodeArray(annotations), annotations.length) 76 return this 77 } 78 get typeAnnotation(): TypeNode | undefined { 79 return unpackNode(global.generatedEs2panda._TSTypeAliasDeclarationTypeAnnotationConst(global.context, this.peer)) 80 } 81 /** @deprecated */ 82 setTsTypeAnnotation(typeAnnotation: TypeNode): this { 83 global.generatedEs2panda._TSTypeAliasDeclarationSetTsTypeAnnotation(global.context, this.peer, passNode(typeAnnotation)) 84 return this 85 } 86} 87export function isTSTypeAliasDeclaration(node: AstNode): node is TSTypeAliasDeclaration { 88 return node instanceof TSTypeAliasDeclaration 89} 90if (!nodeByType.has(Es2pandaAstNodeType.AST_NODE_TYPE_TS_TYPE_ALIAS_DECLARATION)) { 91 nodeByType.set(Es2pandaAstNodeType.AST_NODE_TYPE_TS_TYPE_ALIAS_DECLARATION, TSTypeAliasDeclaration) 92} 93