| 317 | |
| 318 | |
| 319 | hx::Object *runFunExprDynamic(CppiaCtx *ctx, ScriptCallable *inFunExpr, hx::Object *inThis, Array<Dynamic> &inArgs ) |
| 320 | { |
| 321 | unsigned char *pointer = ctx->pointer; |
| 322 | inFunExpr->pushArgsDynamic(ctx, inThis, inArgs); |
| 323 | AutoStack save(ctx,pointer); |
| 324 | return runContextConvertObject(ctx, inFunExpr->getReturnType(), inFunExpr ); |
| 325 | } |
| 326 | |
| 327 | |
| 328 | void runFunExprDynamicVoid(CppiaCtx *ctx, ScriptCallable *inFunExpr, hx::Object *inThis, Array<Dynamic> &inArgs ) |
no test coverage detected