void objectToInt(CppiaCtx *inCtx) { inCtx->returnInt( inCtx->getObject() ); }
| 277 | void SLJIT_CALL frameToDouble(CppiaCtx *inCtx) { inCtx->returnFloat( inCtx->getObject() ); } |
| 278 | //void objectToInt(CppiaCtx *inCtx) { inCtx->returnInt( inCtx->getObject() ); } |
| 279 | void SLJIT_CALL objectToDouble(CppiaCtx *inCtx) { inCtx->returnFloat( inCtx->getObject() ); } |
| 280 | void SLJIT_CALL objectToDoublePointer(CppiaCtx *inCtx) |
| 281 | { |
| 282 | *(double *)inCtx->pointer = (*(hx::Object **)inCtx->pointer)->__ToDouble(); |
nothing calls this directly
no test coverage detected