|
|
|
@ -127,18 +127,20 @@ namespace Debugger |
|
|
|
void BeforeGetValue(string name) |
|
|
|
void BeforeGetValue(string name) |
|
|
|
{ |
|
|
|
{ |
|
|
|
// PrintLine("BeforeGetValue: " + name);
|
|
|
|
// PrintLine("BeforeGetValue: " + name);
|
|
|
|
|
|
|
|
try { |
|
|
|
Variable localVar = debugger.LocalVariables[name]; |
|
|
|
Variable localVar = debugger.LocalVariables[name]; |
|
|
|
if (localVar != null) { |
|
|
|
|
|
|
|
PrintLine("Warning: 'Getting of local variables not implemented'"); |
|
|
|
PrintLine("Warning: 'Getting of local variables not implemented'"); |
|
|
|
|
|
|
|
} catch (DebuggerException) { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void AfterSetValue(string name) |
|
|
|
void AfterSetValue(string name) |
|
|
|
{ |
|
|
|
{ |
|
|
|
//PrintLine("AfterSetValue: " + name);
|
|
|
|
//PrintLine("AfterSetValue: " + name);
|
|
|
|
|
|
|
|
try { |
|
|
|
Variable localVar = debugger.LocalVariables[name]; |
|
|
|
Variable localVar = debugger.LocalVariables[name]; |
|
|
|
if (localVar != null) { |
|
|
|
|
|
|
|
PrintLine("Warning: 'Setting of local variables not implemented'"); |
|
|
|
PrintLine("Warning: 'Setting of local variables not implemented'"); |
|
|
|
|
|
|
|
} catch (DebuggerException) { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|