We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77882bf commit f886dd4Copy full SHA for f886dd4
1 file changed
src/vs/workbench/parts/debug/common/debugModel.ts
@@ -644,6 +644,13 @@ export class Breakpoint extends BaseBreakpoint implements IBreakpoint {
644
return data ? data.endColumn : undefined;
645
}
646
647
+ setSessionData(sessionId: string, data: DebugProtocol.Breakpoint): void {
648
+ super.setSessionData(sessionId, data);
649
+ if (!this._adapterData) {
650
+ this._adapterData = this.adapterData;
651
+ }
652
653
+
654
toJSON(): any {
655
const result = super.toJSON();
656
result.uri = this.uri;
0 commit comments