| 93 | String runString(CppiaCtx *ctx) HXCPP_OVERRIDE { return Dynamic(runObject(ctx)); } |
| 94 | int runInt(CppiaCtx *ctx) HXCPP_OVERRIDE { return 0; } |
| 95 | hx::Object *runObject(CppiaCtx *ctx) HXCPP_OVERRIDE |
| 96 | { |
| 97 | String val = strVal->runString(ctx); |
| 98 | BCR_CHECK; |
| 99 | return ( KEYS ? val.keyValueIterator() : val.iterator() ).mPtr; |
| 100 | } |
| 101 | |
| 102 | #ifdef CPPIA_JIT |
| 103 | static hx::Object *SLJIT_CALL run(String *inValue) |
nothing calls this directly
no test coverage detected