示例#1
0
 public static void Set(ThreadMirror thread, VariableItem item, LiveStackFrame parent, LocalVariable key, Value newValue)
 {
     parent.SetValue(key, newValue);
 }
示例#2
0
 public static void Set(ThreadMirror thread, VariableItem item, LiveStackFrame parent, int key, Value newValue)
 {
     LocalVariable local = parent.GetVisibleVariables()[key];
     parent.SetValue(local, newValue);
 }