Ejemplo n.º 1
0
		public MessageCallStackFrameVM(CallStackVM owner, int index, string name) {
			this.owner = owner;
			this.index = index;
			this.cachedOutput = CachedOutput.Create(name, TypeColor.Error);
		}
Ejemplo n.º 2
0
		public CallStackFrameVM(CallStackVM owner, int index, CorFrame frame) {
			this.owner = owner;
			this.index = index;
			this.frame = frame;
		}
Ejemplo n.º 3
0
 public CallStackFrameVM(CallStackVM owner, int index, CorFrame frame)
 {
     this.owner = owner;
     this.index = index;
     this.frame = frame;
 }
Ejemplo n.º 4
0
 public MessageCallStackFrameVM(CallStackVM owner, int index, string name)
 {
     this.owner        = owner;
     this.index        = index;
     this.cachedOutput = CachedOutput.Create(name, TypeColor.Error);
 }
Ejemplo n.º 5
0
 public CallStackCtxMenuContext(CallStackVM vm, ICallStackFrameVM[] selItems)
 {
     this.VM            = vm;
     this.SelectedItems = selItems;
 }