Skip to content

Commit 314ebd7

Browse files
committed
add Id setter; fixes #13
1 parent f31c929 commit 314ebd7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

adapter/src/debugSession.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,10 @@ export class Breakpoint implements DebugProtocol.Breakpoint {
104104
e.source = source;
105105
}
106106
}
107+
108+
public setId(id: number) {
109+
(this as DebugProtocol.Breakpoint).id = id;
110+
}
107111
}
108112

109113
export class Module implements DebugProtocol.Module {

0 commit comments

Comments
 (0)