| 106 | } |
| 107 | |
| 108 | void genCode(CppiaCompiler *compiler, const JitVal &inDest,ExprType destType) HXCPP_OVERRIDE |
| 109 | { |
| 110 | JitTemp value(compiler,jtString); |
| 111 | strVal->genCode(compiler, value, etString); |
| 112 | compiler->callNative( (void *)run, value); |
| 113 | compiler->convertReturnReg(etObject, inDest, destType); |
| 114 | } |
| 115 | #endif |
| 116 | }; |
| 117 |
nothing calls this directly
no test coverage detected