Skip to content

Commit b6f6766

Browse files
committed
rename
1 parent de67bac commit b6f6766

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/tools/lldb-dap/src-ts/ui/symbols-provider.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export class SymbolsProvider extends DisposableContext {
3535
static async doesServerSupportSymbolsRequest(session: vscode.DebugSession): Promise<boolean> {
3636
try {
3737
const dummyArguments = { _dummy: true };
38-
await session.customRequest("dapGetModuleSymbols", dummyArguments);
38+
await session.customRequest("moduleSymbols", dummyArguments);
3939
return true;
4040
} catch (_error) {
4141
return false;
@@ -86,7 +86,7 @@ export class SymbolsProvider extends DisposableContext {
8686

8787
private async getSymbolsForModule(session: vscode.DebugSession, moduleId: string): Promise<DAPSymbolType[]> {
8888
console.log(`Getting symbols for module: ${moduleId}`);
89-
const symbols_response: { symbols: Array<DAPSymbolType> } = await session.customRequest("dapGetModuleSymbols", { moduleId });
89+
const symbols_response: { symbols: Array<DAPSymbolType> } = await session.customRequest("moduleSymbols", { moduleId });
9090

9191

9292
return symbols_response?.symbols || [];

0 commit comments

Comments
 (0)