8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d040f2 commit 8b74c4aCopy full SHA for 8b74c4a
src/services/services.ts
@@ -5281,9 +5281,13 @@ module ts {
5281
var position = node.getEnd();
5282
var type = typeInfoResolver.getTypeAtLocation(node);
5283
5284
+ var displayParts = typeToDisplayParts(typeInfoResolver, type, getContainerNode(node));
5285
+ displayParts.unshift(displayPart(" ", SymbolDisplayPartKind.space));
5286
+ displayParts.unshift(displayPart(":", SymbolDisplayPartKind.punctuation));
5287
+
5288
return {
5289
position,
- displayParts: typeToDisplayParts(typeInfoResolver, type, getContainerNode(node))
5290
+ displayParts
5291
};
5292
}
5293
0 commit comments