Browse Source

CorValue and RawCorValue are not outputted in unit tests

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@3190 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
David Srbecký 17 years ago
parent
commit
5972f6a9b9
  1. 2
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Values/Value.cs

2
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Values/Value.cs

@ -70,6 +70,7 @@ namespace Debugger @@ -70,6 +70,7 @@ namespace Debugger
}
}
[Tests.Ignore]
public ICorDebugValue RawCorValue {
get {
if (this.IsInvalid) throw new GetValueException("Value is no longer valid");
@ -78,6 +79,7 @@ namespace Debugger @@ -78,6 +79,7 @@ namespace Debugger
}
}
[Tests.Ignore]
public ICorDebugValue CorValue {
get {
if (this.IsInvalid) throw new GetValueException("Value is no longer valid");

Loading…
Cancel
Save