internal PathView(ToolView toolView, ExecutionModel executionModel) { this.ToolView = toolView; this.ExecutionModel = executionModel; this.Name = this.ComputeName(); }
internal ReplayView(ToolView toolView) { this.ToolView = toolView; this.heap = new HeapView(this); this.StepAwayCommand = new Command(this.StepAway); this.StepBackCommand = new Command(this.StepBack); this.StepOverCommand = new Command(this.StepOver); this.StepIntoCommand = new Command(this.StepInto); this.StepOutCommand = new Command(this.StepOut); }
public CallGraphView(ToolView toolView) { this.toolView = toolView; }