public MessageCallStackFrameVM(CallStackVM owner, int index, string name) { this.owner = owner; this.index = index; this.cachedOutput = CachedOutput.Create(name, TypeColor.Error); }
public CallStackFrameVM(CallStackVM owner, int index, CorFrame frame) { this.owner = owner; this.index = index; this.frame = frame; }
public CallStackCtxMenuContext(CallStackVM vm, ICallStackFrameVM[] selItems) { this.VM = vm; this.SelectedItems = selItems; }