@@ -41,6 +41,7 @@ export class ProtocolClient extends ee.EventEmitter {
4141 public send ( command : 'setBreakpoints' , args : DebugProtocol . SetBreakpointsArguments ) : Promise < DebugProtocol . SetBreakpointsResponse > ;
4242 public send ( command : 'setFunctionBreakpoints' , args : DebugProtocol . SetFunctionBreakpointsArguments ) : Promise < DebugProtocol . SetFunctionBreakpointsResponse > ;
4343 public send ( command : 'setExceptionBreakpoints' , args : DebugProtocol . SetExceptionBreakpointsArguments ) : Promise < DebugProtocol . SetExceptionBreakpointsResponse > ;
44+ public send ( command : 'setInstructionBreakpoints' , args : DebugProtocol . SetInstructionBreakpointsArguments ) : Promise < DebugProtocol . SetInstructionBreakpointsResponse > ;
4445 public send ( command : 'dataBreakpointInfo' , args : DebugProtocol . DataBreakpointInfoArguments ) : Promise < DebugProtocol . DataBreakpointInfoResponse > ;
4546 public send ( command : 'setDataBreakpoints' , args : DebugProtocol . SetDataBreakpointsArguments ) : Promise < DebugProtocol . SetDataBreakpointsResponse > ;
4647 public send ( command : 'continue' , args : DebugProtocol . ContinueArguments ) : Promise < DebugProtocol . ContinueResponse > ;
@@ -64,6 +65,8 @@ export class ProtocolClient extends ee.EventEmitter {
6465 public send ( command : 'gotoTargets' , args : DebugProtocol . GotoTargetsArguments ) : Promise < DebugProtocol . GotoTargetsResponse > ;
6566 public send ( command : 'completions' , args : DebugProtocol . CompletionsArguments ) : Promise < DebugProtocol . CompletionsResponse > ;
6667 public send ( command : 'exceptionInfo' , args : DebugProtocol . ExceptionInfoArguments ) : Promise < DebugProtocol . ExceptionInfoResponse > ;
68+ public send ( command : 'readMemoryRequest' , args : DebugProtocol . ReadMemoryArguments ) : Promise < DebugProtocol . ReadMemoryResponse > ;
69+ public send ( command : 'writeMemoryRequest' , args : DebugProtocol . WriteMemoryArguments ) : Promise < DebugProtocol . WriteMemoryResponse > ;
6770 public send ( command : string , args ?: any ) : Promise < DebugProtocol . Response > ;
6871
6972 public send ( command : string , args ?: any ) : Promise < DebugProtocol . Response > {
0 commit comments