| 2203 | } |
| 2204 | |
| 2205 | static void ScriptArrayGetRefCount_Generic(asIScriptGeneric *gen) |
| 2206 | { |
| 2207 | CScriptArray *self = (CScriptArray*)gen->GetObject(); |
| 2208 | *reinterpret_cast<int*>(gen->GetAddressOfReturnLocation()) = self->GetRefCount(); |
| 2209 | } |
| 2210 | |
| 2211 | static void ScriptArraySetFlag_Generic(asIScriptGeneric *gen) |
| 2212 | { |
nothing calls this directly
no test coverage detected