Exemplo n.º 1
0
 public Factory(JoinableTaskContext taskContext,
                DebugPendingBreakpoint.Factory pendingBreakpointFactory,
                DebugWatchpoint.Factory watchpointFactory)
 {
     this.taskContext = taskContext;
     this.pendingBreakpointFactory = pendingBreakpointFactory;
     this.watchpointFactory        = watchpointFactory;
 }
Exemplo n.º 2
0
 private LldbBreakpointManager(
     JoinableTaskContext taskContext,
     DebugPendingBreakpoint.Factory pendingBreakpointFactory,
     DebugWatchpoint.Factory watchpointFactory,
     IDebugEngineHandler debugEngineHandler,
     IGgpDebugProgram debugProgram)
 {
     this.taskContext = taskContext;
     this.pendingBreakpointFactory = pendingBreakpointFactory;
     this.watchpointFactory        = watchpointFactory;
     this.debugEngineHandler       = debugEngineHandler;
     this.debugProgram             = debugProgram;
 }