Searched refs:paramType (Results 1 – 7 of 7) sorted by relevance
576 paramType: ts.SyntaxKind = -1; // 参数类型的kind property in ParamInfo602 return this.paramType;605 setParamType(paramType: ts.SyntaxKind): void {606 this.paramType = paramType;
304 const paramType = parameters[index].type;305 if (ts.isTypeReferenceNode(paramType)) {306 …const paramTypeApiDecInfo = this.recognizeApiWithNode(paramType.typeName, fileName, (node) => node…308 this.modifyTypeReferenceSourceFileName(paramType.typeName, paramTypeApiDecInfo);
308 let paramType: string = '';311 paramType = 'object';313 paramType = 'function';315 paramType = curParameter.type.getText();318 newCommentTag.type = paramType;
267 function analysisParamType(paramType) { argument269 if (paramType.kind === ts.SyntaxKind.UnionType) {270 paramType.types.forEach(type => {274 types.push(paramType.getText());
198 if (lastParam.paramType) {201 if (!basicTypes.has(lastParam.paramType)) {
413 CommonFunctions.judgeSpecialCase(paramApiInfos[paramIndex].paramType) : [];
232 const paramType: string[] = params[i].getType(); constant233 … if (paramType.length === 1 && paramType[0].startsWith(StringConstant.ASYNC_CALLBACK_METHOD_KEY)) {