Lines Matching refs:apiName
33 function wrapApiDigestInfo(astNode, className, apiName, apiType, rawText, ext) { argument
43 .setApiName(apiName)
59 const apiName = propertySignature.name.getText();
60 …return wrapApiDigestInfo(propertySignature, className, apiName, ApiType.InterfaceProperty, rawText…
74 const apiName = methodDeclaration.name.getText();
75 …return wrapApiDigestInfo(methodDeclaration, className, apiName, ApiType.ClassMethod, rawText, ext);
81 const apiName = typeAliasDeclaration.name.getText();
82 …return wrapApiDigestInfo(typeAliasDeclaration, className, apiName, ApiType.TypeAliasDeclaration, r…
88 const apiName = callSignature.name ? callSignature.name.getText() : className;
89 return wrapApiDigestInfo(callSignature, className, apiName, ApiType.CallSignature, rawText, ext);
103 const apiName = methodSignature.name.getText();
104 …return wrapApiDigestInfo(methodSignature, className, apiName, ApiType.InterfaceMethod, rawText, ex…
137 const apiName = property.name.getText();
138 …return wrapApiDigestInfo(property, className, apiName, ApiType.ClassProperty, property.getText(), …
151 const apiName = 'constructor';
152 …return wrapApiDigestInfo(constructorDec, className, apiName, ApiType.Constructor, constructorDec.g…
185 const apiName = enumMember.name.getText();
186 …return wrapApiDigestInfo(enumMember, className, apiName, ApiType.EnumMember, enumMember.getText(),…
219 const apiName = fun.name ? fun.name.getText() : '';
220 return wrapApiDigestInfo(fun, className, apiName, ApiType.FunctionType, fun.getText(), ext);