| 28 | } |
| 29 | |
| 30 | static void ScriptAnyAssignment_Generic(asIScriptGeneric *gen) |
| 31 | { |
| 32 | CScriptAny *other = (CScriptAny*)gen->GetArgObject(0); |
| 33 | CScriptAny *self = (CScriptAny*)gen->GetObject(); |
| 34 | |
| 35 | *self = *other; |
| 36 | |
| 37 | gen->SetReturnObject(self); |
| 38 | } |
| 39 | |
| 40 | static void ScriptAny_Store_Generic(asIScriptGeneric *gen) |
| 41 | { |
nothing calls this directly
no test coverage detected