| 2107 | } |
| 2108 | |
| 2109 | static void ScriptArrayInsertLast_Generic(asIScriptGeneric *gen) |
| 2110 | { |
| 2111 | void *value = gen->GetArgAddress(0); |
| 2112 | CScriptArray *self = (CScriptArray*)gen->GetObject(); |
| 2113 | self->InsertLast(value); |
| 2114 | } |
| 2115 | |
| 2116 | static void ScriptArrayRemoveLast_Generic(asIScriptGeneric *gen) |
| 2117 | { |
nothing calls this directly
no test coverage detected