• Home
  • Raw
  • Download

Lines Matching refs:className

33 function wrapApiDigestInfo(astNode, className, apiName, apiType, rawText, ext) {  argument
38 .setClassName(className)
42 .setApiSignature(astNode, ext.packageName, className)
57 const className = parentApiDigest.getClassName();
60 …return wrapApiDigestInfo(propertySignature, className, apiName, ApiType.InterfaceProperty, rawText…
72 const className = parentApiDigest.getClassName();
75 …return wrapApiDigestInfo(methodDeclaration, className, apiName, ApiType.ClassMethod, rawText, ext);
79 const className = parentApiDigest.getClassName();
82 …return wrapApiDigestInfo(typeAliasDeclaration, className, apiName, ApiType.TypeAliasDeclaration, r…
86 const className = parentApiDigest.getClassName();
88 const apiName = callSignature.name ? callSignature.name.getText() : className;
89 return wrapApiDigestInfo(callSignature, className, apiName, ApiType.CallSignature, rawText, ext);
101 const className = parentApiDigest.getClassName();
104 …return wrapApiDigestInfo(methodSignature, className, apiName, ApiType.InterfaceMethod, rawText, ex…
116 const className = interfaceDec.name.getText();
123 rawText += ` interface ${className}`;
124 return wrapApiDigestInfo(interfaceDec, className, className, ApiType.InterfaceType, rawText, ext);
136 const className = parentApiDigest.getClassName();
138 …return wrapApiDigestInfo(property, className, apiName, ApiType.ClassProperty, property.getText(), …
150 const className = parentApiDigest ? parentApiDigest.getClassName() : '';
152 …return wrapApiDigestInfo(constructorDec, className, apiName, ApiType.Constructor, constructorDec.g…
164 const className = classDec.name ? classDec.name.text : '';
171 rawText += ` class ${className}`;
172 return wrapApiDigestInfo(classDec, className, className, ApiType.ClassType, rawText, ext);
184 const className = parentApiDigest ? parentApiDigest.getClassName() : '';
186 …return wrapApiDigestInfo(enumMember, className, apiName, ApiType.EnumMember, enumMember.getText(),…
198 const className = enumNode.name.getText();
205 rawText += ` enum ${className}`;
206 return wrapApiDigestInfo(enumNode, className, className, ApiType.EnumType, rawText, ext);
218 const className = parentApiDigest ? parentApiDigest.getClassName() : '';
220 return wrapApiDigestInfo(fun, className, apiName, ApiType.FunctionType, fun.getText(), ext);
231 const className = module.name.getText();
238 return wrapApiDigestInfo(module, className, className, ApiType.NamespaceType, rawText, ext);
242 const className = 'sourcefile';
244 return wrapApiDigestInfo(sourceFile, className, className, ApiType.SourceFile, rawText, ext);