| 134 | } |
| 135 | #ifdef CPPIA_JIT |
| 136 | static void SLJIT_CALL strToCase(String *ioVal) |
| 137 | { |
| 138 | if (UPPER) |
| 139 | *ioVal = ioVal->toUpperCase(); |
| 140 | else |
| 141 | *ioVal = ioVal->toLowerCase(); |
| 142 | } |
| 143 | |
| 144 | void genCode(CppiaCompiler *compiler, const JitVal &inDest,ExprType destType) HXCPP_OVERRIDE |
| 145 | { |
nothing calls this directly
no test coverage detected