| 4481 | int runInt(CppiaCtx *ctx) HXCPP_OVERRIDE { return doRun(ctx); } |
| 4482 | Float runFloat(CppiaCtx *ctx) HXCPP_OVERRIDE { return doRun(ctx); } |
| 4483 | ::String runString(CppiaCtx *ctx) HXCPP_OVERRIDE { return ValToString(doRun(ctx)); } |
| 4484 | hx::Object *runObject(CppiaCtx *ctx) HXCPP_OVERRIDE { return Dynamic(doRun(ctx)).mPtr; } |
| 4485 | }; |
| 4486 |
nothing calls this directly
no test coverage detected