Browse Source

Fix evaluation bug caused by null from GetArgumentValue

newNRvisualizers
David Srbecký 13 years ago
parent
commit
aa4cee4972
  1. 2
      src/AddIns/Debugger/Debugger.Core/StackFrame.cs

2
src/AddIns/Debugger/Debugger.Core/StackFrame.cs

@ -276,7 +276,7 @@ namespace Debugger @@ -276,7 +276,7 @@ namespace Debugger
return GetArgumentValue(i);
}
}
return null;
throw new GetValueException("Argument \"{0}\" not found", name);
}
/// <summary> Gets argument with a given index </summary>

Loading…
Cancel
Save