| 2023 | } |
| 2024 | |
| 2025 | static void ScriptArrayAssignment_Generic(asIScriptGeneric *gen) |
| 2026 | { |
| 2027 | CScriptArray *other = (CScriptArray*)gen->GetArgObject(0); |
| 2028 | CScriptArray *self = (CScriptArray*)gen->GetObject(); |
| 2029 | *self = *other; |
| 2030 | gen->SetReturnObject(self); |
| 2031 | } |
| 2032 | |
| 2033 | static void ScriptArrayEquals_Generic(asIScriptGeneric *gen) |
| 2034 | { |
nothing calls this directly
no test coverage detected