Skip to content

Commit 6581b34

Browse files
committed
fix
1 parent 7c0ad87 commit 6581b34

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export {};
22

33
/// The symbol type we get from the lldb-dap server
4-
export type DAPSymbolType = {
4+
export declare interface DAPSymbolType {
55
userId: number;
66
isDebug: boolean;
77
isSynthetic: boolean;
@@ -11,4 +11,4 @@ export type DAPSymbolType = {
1111
loadAddress?: number;
1212
size: number;
1313
name: string;
14-
};
14+
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export class SymbolsProvider extends DisposableContext {
3737
this.tracker.onDidInitializeSession((session) => {
3838
this.GetLLDBServerVersion(session).then((version) => {
3939
if (version !== undefined) {
40-
if (version[0] >= 23) {
40+
if (version[0] >= 22) {
4141
vscode.commands.executeCommand("setContext", "lldb-dap.supportsModuleSymbolsRequest", true);
4242
}
4343
}

0 commit comments

Comments
 (0)