We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab2f0b2 commit e9eb281Copy full SHA for e9eb281
src/org/rubyforge/debugcommons/model/RubyFrame.java
@@ -59,6 +59,10 @@ public RubyVariable[] getVariables() throws RubyDebuggerException {
59
}
60
return variables;
61
62
+
63
+ public void clearCachedVariables() {
64
+ variables = null;
65
+ }
66
67
public RubyVariable inspectExpression(final String expression) throws RubyDebuggerException {
68
return getProxy().inspectExpression(this, expression);
0 commit comments