コード例 #1
0
 public MonoProperty(StackFrame frame, LocalVariable localVariable, TypeMirror typeMirror, Mirror childMirror)
 {
     this.frame = frame;
     this.variable = localVariable;
     this.mirror = typeMirror;
     this.childMirror = childMirror;
 }
コード例 #2
0
 protected void CheckMirror(VirtualMachine vm, Mirror m)
 {
     if (vm != m.VirtualMachine)
     {
         throw new VMMismatchException();
     }
 }
コード例 #3
0
ファイル: Mirror.cs プロジェクト: 0xb1dd1e/debugger-libs
		protected void CheckMirror (Mirror m) {
			if (vm != m.VirtualMachine)
				throw new VMMismatchException ();
		}