We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b59083 commit d364f61Copy full SHA for d364f61
src/server/client.ts
@@ -24,7 +24,6 @@ module ts.server {
24
private fileMapping: ts.Map<string> = {};
25
private lineMaps: ts.Map<number[]> = {};
26
private messages: string[] = [];
27
- private lastCompletionEntry: CompletionEntry;
28
private lastRenameEntry: RenameEntry;
29
30
constructor(private host: SessionClientHost) {
src/server/session.ts
@@ -54,7 +54,6 @@ module ts.server {
54
}
55
56
function sortNavItems(items: ts.NavigateToItem[]) {
57
-
58
return items.sort((a, b) => {
59
if (a.matchKind < b.matchKind) {
60
return -1;
0 commit comments