Fix Go to Symbol in Workspace by sean-mcmanus · Pull Request #6795 · microsoft/vscode-cpptools · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion Extension/src/LanguageServer/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -302,10 +302,16 @@ export interface LocalizeDocumentSymbol {
children: LocalizeDocumentSymbol[];
}

/** Differs from vscode.Location, which has a uri of type vscode.Uri. */
interface Location {
uri: string;
range: Range;
}

interface LocalizeSymbolInformation {
name: string;
kind: vscode.SymbolKind;
location: vscode.Location;
location: Location;
containerName: string;
suffix: LocalizeStringParams;
}
Expand Down
4 changes: 2 additions & 2 deletions Extension/src/common.ts