@@ -39,7 +39,7 @@ export class DebugStorage {
39
39
let result : Breakpoint [ ] | undefined ;
40
40
try {
41
41
result = JSON . parse ( this . storageService . get ( DEBUG_BREAKPOINTS_KEY , StorageScope . WORKSPACE , '[]' ) ) . map ( ( breakpoint : any ) => {
42
- return new Breakpoint ( URI . parse ( breakpoint . uri . external || breakpoint . source . uri . external ) , breakpoint . lineNumber , breakpoint . column , breakpoint . enabled , breakpoint . condition , breakpoint . hitCondition , breakpoint . logMessage , breakpoint . adapterData , this . textFileService , this . uriIdentityService , this . logService ) ;
42
+ return new Breakpoint ( URI . parse ( breakpoint . uri . external || breakpoint . source . uri . external ) , breakpoint . lineNumber , breakpoint . column , breakpoint . enabled , breakpoint . condition , breakpoint . hitCondition , breakpoint . logMessage , breakpoint . adapterData , this . textFileService , this . uriIdentityService , this . logService , breakpoint . id ) ;
43
43
} ) ;
44
44
} catch ( e ) { }
45
45
@@ -50,7 +50,7 @@ export class DebugStorage {
50
50
let result : FunctionBreakpoint [ ] | undefined ;
51
51
try {
52
52
result = JSON . parse ( this . storageService . get ( DEBUG_FUNCTION_BREAKPOINTS_KEY , StorageScope . WORKSPACE , '[]' ) ) . map ( ( fb : any ) => {
53
- return new FunctionBreakpoint ( fb . name , fb . enabled , fb . hitCondition , fb . condition , fb . logMessage ) ;
53
+ return new FunctionBreakpoint ( fb . name , fb . enabled , fb . hitCondition , fb . condition , fb . logMessage , fb . id ) ;
54
54
} ) ;
55
55
} catch ( e ) { }
56
56
@@ -72,7 +72,7 @@ export class DebugStorage {
72
72
let result : DataBreakpoint [ ] | undefined ;
73
73
try {
74
74
result = JSON . parse ( this . storageService . get ( DEBUG_DATA_BREAKPOINTS_KEY , StorageScope . WORKSPACE , '[]' ) ) . map ( ( dbp : any ) => {
75
- return new DataBreakpoint ( dbp . description , dbp . dataId , true , dbp . enabled , dbp . hitCondition , dbp . condition , dbp . logMessage , dbp . accessTypes , dbp . accessType ) ;
75
+ return new DataBreakpoint ( dbp . description , dbp . dataId , true , dbp . enabled , dbp . hitCondition , dbp . condition , dbp . logMessage , dbp . accessTypes , dbp . accessType , dbp . id ) ;
76
76
} ) ;
77
77
} catch ( e ) { }
78
78
0 commit comments