Home
last modified time | relevance | path

Searched refs:cleanText (Results 1 – 2 of 2) sorted by relevance

/third_party/typescript/src/services/
DnavigationBar.ts86 return cleanText(node.getText(curSourceFile));
710 return cleanText(getModuleName(node as ModuleDeclaration));
718 return cleanText(text);
915 return cleanText(declarationNameToString(node.name));
919 return cleanText(declarationNameToString(parent.name));
939 name = cleanText(name);
945 …const args = cleanText(mapDefined(parent.arguments, a => isStringLiteralLike(a) ? a.getText(curSou…
978 function cleanText(text: string): string { function
/third_party/typescript/src/testRunner/unittests/tsbuild/
Dhelpers.ts459 …function verifyTextEqual(incrementalText: string | undefined, cleanText: string | undefined, messa…
460 if (incrementalText !== cleanText) writeNotEqual(incrementalText, cleanText, message);