Skip to content

Commit 4102e95

Browse files
committed
Reuse new createPrinter functions in symbolDisplay
1 parent 6d99c8f commit 4102e95

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

src/services/symbolDisplay.ts

+2-7
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
CallExpression,
66
CheckFlags,
77
contains,
8-
createPrinter,
8+
createPrinterWithRemoveComments,
99
Debug,
1010
displayPart,
1111
EmitHint,
@@ -75,7 +75,6 @@ import {
7575
NodeBuilderFlags,
7676
ObjectFlags,
7777
operatorPart,
78-
Printer,
7978
PropertyAccessExpression,
8079
PropertyDeclaration,
8180
punctuationPart,
@@ -259,7 +258,6 @@ export function getSymbolDisplayPartsDocumentationAndSymbolKind(typeChecker: Typ
259258
let hasAddedSymbolInfo = false;
260259
const isThisExpression = location.kind === SyntaxKind.ThisKeyword && isInExpressionContext(location) || isThisInTypeQuery(location);
261260
let type: Type | undefined;
262-
let printer: Printer;
263261
let documentationFromAlias: SymbolDisplayPart[] | undefined;
264262
let tagsFromAlias: JSDocTagInfo[] | undefined;
265263
let hasMultipleSignatures = false;
@@ -730,10 +728,7 @@ export function getSymbolDisplayPartsDocumentationAndSymbolKind(typeChecker: Typ
730728
return { displayParts, documentation, symbolKind, tags: tags.length === 0 ? undefined : tags };
731729

732730
function getPrinter() {
733-
if (!printer) {
734-
printer = createPrinter({ removeComments: true });
735-
}
736-
return printer;
731+
return createPrinterWithRemoveComments();
737732
}
738733

739734
function prefixNextMeaning() {

0 commit comments

Comments
 (0)