File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
lldb/tools/lldb-dap/src-ts/ui Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 || [ ] ;
You can’t perform that action at this time.
0 commit comments