| 286 | *(String *)inCtx->pointer = (*(hx::Object **)inCtx->pointer)->toString(); |
| 287 | } |
| 288 | void SLJIT_CALL objectToString(CppiaCtx *inCtx) { inCtx->returnString( inCtx->getObject() ); } |
| 289 | void SLJIT_CALL stringToObject(CppiaCtx *inCtx) { inCtx->returnObject( inCtx->getString() ); } |
| 290 | void SLJIT_CALL intToObject(CppiaCtx *inCtx) { inCtx->returnObject( inCtx->getInt() ); } |
| 291 | void SLJIT_CALL doubleToObject(CppiaCtx *inCtx) { inCtx->returnObject( inCtx->getFloat() ); } |
nothing calls this directly
no test coverage detected