| 326 | |
| 327 | |
| 328 | void runFunExprDynamicVoid(CppiaCtx *ctx, ScriptCallable *inFunExpr, hx::Object *inThis, Array<Dynamic> &inArgs ) |
| 329 | { |
| 330 | unsigned char *pointer = ctx->pointer; |
| 331 | inFunExpr->pushArgsDynamic(ctx, inThis, inArgs); |
| 332 | AutoStack save(ctx,pointer); |
| 333 | ctx->runVoid(inFunExpr); |
| 334 | } |
| 335 | |
| 336 | |
| 337 |
no test coverage detected