We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1a403d1 + 0cd75e2 commit f21a7b2Copy full SHA for f21a7b2
External/Plugins/FlashDebugger/Debugger/ExpressionContext.cs
@@ -48,6 +48,7 @@ public Context createContext(java.lang.Object par0)
48
Value val;
49
if (par0 is Variable) val = ((Variable)par0).getValue();
50
else if (par0 is Value) val = (Value)par0;
51
+ else if (par0 is java.lang.String) val = DValue.forPrimitive(par0, getIsolateId());
52
else throw new NotImplementedException();
53
return new ExpressionContext(session, frame, val);
54
}
0 commit comments