| 2099 | } |
| 2100 | |
| 2101 | static void ScriptArrayRemoveRange_Generic(asIScriptGeneric *gen) |
| 2102 | { |
| 2103 | asUINT start = gen->GetArgDWord(0); |
| 2104 | asUINT count = gen->GetArgDWord(1); |
| 2105 | CScriptArray *self = (CScriptArray*)gen->GetObject(); |
| 2106 | self->RemoveRange(start, count); |
| 2107 | } |
| 2108 | |
| 2109 | static void ScriptArrayInsertLast_Generic(asIScriptGeneric *gen) |
| 2110 | { |
nothing calls this directly
no test coverage detected