| 862 | return doRun(ctx,1); |
| 863 | } |
| 864 | Dynamic __run(D a,D b) HXCPP_OVERRIDE |
| 865 | { |
| 866 | CppiaCtx *ctx = CppiaCtx::getCurrent(); |
| 867 | AutoStack aut(ctx); |
| 868 | ctx->pointer += sizeof(hx::Object *); |
| 869 | pushArgDynamic(ctx,0,a); |
| 870 | pushArgDynamic(ctx,1,b); |
| 871 | return doRun(ctx,2); |
| 872 | } |
| 873 | Dynamic __run(D a,D b,D c) HXCPP_OVERRIDE |
| 874 | { |
| 875 | CppiaCtx *ctx = CppiaCtx::getCurrent(); |
no outgoing calls
no test coverage detected