Lines Matching refs:getText
58 const rawText = propertySignature.getText();
59 const apiName = propertySignature.name.getText();
73 const rawText = methodDeclaration.getText();
74 const apiName = methodDeclaration.name.getText();
80 const rawText = typeAliasDeclaration.getText();
81 const apiName = typeAliasDeclaration.name.getText();
87 const rawText = callSignature.getText();
88 const apiName = callSignature.name ? callSignature.name.getText() : className;
102 const rawText = methodSignature.getText();
103 const apiName = methodSignature.name.getText();
116 const className = interfaceDec.name.getText();
120 rawText += ` ${modifier.getText()}`;
137 const apiName = property.name.getText();
138 return wrapApiDigestInfo(property, className, apiName, ApiType.ClassProperty, property.getText(), ext);
152 return wrapApiDigestInfo(constructorDec, className, apiName, ApiType.Constructor, constructorDec.getText(), ext);
168 rawText += ` ${modifier.getText()}`;
185 const apiName = enumMember.name.getText();
186 return wrapApiDigestInfo(enumMember, className, apiName, ApiType.EnumMember, enumMember.getText(), ext);
198 const className = enumNode.name.getText();
202 rawText += ` ${modifier.getText()}`;
219 const apiName = fun.name ? fun.name.getText() : '';
220 return wrapApiDigestInfo(fun, className, apiName, ApiType.FunctionType, fun.getText(), ext);
231 const className = module.name.getText();
235 rawText += ` ${child.getText()}`;