| 1111 | |
| 1112 | |
| 1113 | static int SLJIT_CALL runIndex( Array_obj<ELEM> *inArray, typename ExprBaseTypeOf<ELEM>::Base inBase, hx::Object *pos) |
| 1114 | { |
| 1115 | if (FUNC==afIndexOf) |
| 1116 | return inArray->indexOf(inBase,pos); |
| 1117 | else |
| 1118 | return inArray->lastIndexOf(inBase,pos); |
| 1119 | } |
| 1120 | |
| 1121 | static void SLJIT_CALL runInsert( Array_obj<ELEM> *inArray, int pos, typename ExprBaseTypeOf<ELEM>::Base inBase) |
| 1122 | { |
nothing calls this directly
no test coverage detected