| 4535 | Float runFloat(CppiaCtx *ctx) HXCPP_OVERRIDE { return GetFloatAligned( ((char *)ctx->frame) + offset ); } |
| 4536 | ::String runString(CppiaCtx *ctx) HXCPP_OVERRIDE { return ValToString( GetFloatAligned( ((char *)ctx->frame) + offset )); } |
| 4537 | hx::Object *runObject(CppiaCtx *ctx) HXCPP_OVERRIDE |
| 4538 | { |
| 4539 | return Dynamic( GetFloatAligned( ((char *)ctx->frame) + offset ) ).mPtr; |
| 4540 | } |
| 4541 | |
| 4542 | CppiaExpr *makeSetter(AssignOp op,CppiaExpr *value) HXCPP_OVERRIDE |
| 4543 | { |
nothing calls this directly
no test coverage detected