Ejemplo n.º 1
0
 public LocArgCorValueHolder(bool isArg, LocalsVM locals, CorValue value, int index)
 {
     this.isArg  = isArg;
     this.locals = locals;
     this.value  = value;
     this.index  = index;
 }
Ejemplo n.º 2
0
 public LocArgCorValueHolder(ITheDebugger theDebugger, bool isArg, LocalsVM locals, CorValue value, int index)
 {
     this.theDebugger = theDebugger;
     this.isArg       = isArg;
     this.locals      = locals;
     this.value       = value;
     this.index       = index;
 }
Ejemplo n.º 3
0
 public LocalsCtxMenuContext(LocalsVM vm, ValueVM[] selItems)
 {
     this.VM            = vm;
     this.SelectedItems = selItems;
 }