@@ -43,7 +43,7 @@ export class Scope implements DebugProtocol.Scope {
43
43
export class StackFrame implements DebugProtocol . StackFrame {
44
44
id : number ;
45
45
name : string ;
46
- source ?: Source ;
46
+ source ?: DebugProtocol . Source ;
47
47
line : number ;
48
48
column : number ;
49
49
endLine ?: number ;
@@ -242,10 +242,10 @@ export class ThreadEvent extends Event implements DebugProtocol.ThreadEvent {
242
242
export class BreakpointEvent extends Event implements DebugProtocol . BreakpointEvent {
243
243
body : {
244
244
reason : string ,
245
- breakpoint : Breakpoint
245
+ breakpoint : DebugProtocol . Breakpoint
246
246
} ;
247
247
248
- public constructor ( reason : string , breakpoint : Breakpoint ) {
248
+ public constructor ( reason : string , breakpoint : DebugProtocol . Breakpoint ) {
249
249
super ( 'breakpoint' ) ;
250
250
this . body = {
251
251
reason : reason ,
@@ -257,10 +257,10 @@ export class BreakpointEvent extends Event implements DebugProtocol.BreakpointEv
257
257
export class ModuleEvent extends Event implements DebugProtocol . ModuleEvent {
258
258
body : {
259
259
reason : 'new' | 'changed' | 'removed' ,
260
- module : Module
260
+ module : DebugProtocol . Module
261
261
} ;
262
262
263
- public constructor ( reason : 'new' | 'changed' | 'removed' , module : Module ) {
263
+ public constructor ( reason : 'new' | 'changed' | 'removed' , module : DebugProtocol . Module ) {
264
264
super ( 'module' ) ;
265
265
this . body = {
266
266
reason : reason ,
@@ -272,10 +272,10 @@ export class ModuleEvent extends Event implements DebugProtocol.ModuleEvent {
272
272
export class LoadedSourceEvent extends Event implements DebugProtocol . LoadedSourceEvent {
273
273
body : {
274
274
reason : 'new' | 'changed' | 'removed' ,
275
- source : Source
275
+ source : DebugProtocol . Source
276
276
} ;
277
277
278
- public constructor ( reason : 'new' | 'changed' | 'removed' , source : Source ) {
278
+ public constructor ( reason : 'new' | 'changed' | 'removed' , source : DebugProtocol . Source ) {
279
279
super ( 'loadedSource' ) ;
280
280
this . body = {
281
281
reason : reason ,
0 commit comments