| 566 | } |
| 567 | |
| 568 | bool __hxcpp_dbg_getScriptableValue(hx::StackFrame *inFrame, String inName, ::Dynamic &outValue) |
| 569 | { |
| 570 | hx::ScriptCallable *callable = inFrame->position->scriptCallable; |
| 571 | if (callable) |
| 572 | return callable->getScriptableValue((unsigned char *)inFrame, inName, outValue); |
| 573 | return false; |
| 574 | } |
| 575 | |
| 576 | |
| 577 | bool __hxcpp_dbg_setScriptableValue(hx::StackFrame *inFrame, String inName, ::Dynamic inValue) |
no test coverage detected