| 373 | return ioValue->indexOf(*sought, Dynamic(first)); |
| 374 | } |
| 375 | static int SLJIT_CALL runLastIndexOf(String *ioValue, String *sought, hx::Object *first) |
| 376 | { |
| 377 | return ioValue->lastIndexOf(*sought, Dynamic(first)); |
| 378 | } |
| 379 | void genCode(CppiaCompiler *compiler, const JitVal &inDest,ExprType destType) HXCPP_OVERRIDE |
| 380 | { |
| 381 | JitTemp value(compiler,jtString); |
nothing calls this directly
no test coverage detected