| 559 | #ifdef HXCPP_STACK_SCRIPTABLE |
| 560 | |
| 561 | void __hxcpp_dbg_getScriptableVariables(hx::StackFrame *inFrame, ::Array<Dynamic> outNames) |
| 562 | { |
| 563 | hx::ScriptCallable *callable = inFrame->position->scriptCallable; |
| 564 | if (callable) |
| 565 | callable->getScriptableVariables((unsigned char *)inFrame, outNames); |
| 566 | } |
| 567 | |
| 568 | bool __hxcpp_dbg_getScriptableValue(hx::StackFrame *inFrame, String inName, ::Dynamic &outValue) |
| 569 | { |
no test coverage detected