This commit is contained in:
isidor
2020-05-12 10:34:14 +02:00
parent bec895643d
commit 4fee76e61b
4 changed files with 5 additions and 5 deletions
@@ -366,7 +366,7 @@ export class DebugSession implements IDebugSession {
}
}
async dataBreakpointInfo(name: string, variablesReference?: number): Promise<{ dataId: string | null, description: string, canPersist?: boolean }> {
async dataBreakpointInfo(name: string, variablesReference?: number): Promise<{ dataId: string | null, description: string, canPersist?: boolean } | undefined> {
if (!this.raw) {
throw new Error(localize('noDebugAdapter', "No debug adapter, can not send '{0}'", 'data breakpoints info'));
}