parent
77882bfffc
commit
f886dd4fb8
|
@ -644,6 +644,13 @@ export class Breakpoint extends BaseBreakpoint implements IBreakpoint {
|
|||
return data ? data.endColumn : undefined;
|
||||
}
|
||||
|
||||
setSessionData(sessionId: string, data: DebugProtocol.Breakpoint): void {
|
||||
super.setSessionData(sessionId, data);
|
||||
if (!this._adapterData) {
|
||||
this._adapterData = this.adapterData;
|
||||
}
|
||||
}
|
||||
|
||||
toJSON(): any {
|
||||
const result = super.toJSON();
|
||||
result.uri = this.uri;
|
||||
|
|
Loading…
Reference in New Issue