interface
| 5032 | |
| 5033 | // interface |
| 5034 | void asCScriptEngine::ForwardGCEnumReferences(void *ref, asITypeInfo *type) |
| 5035 | { |
| 5036 | asCTypeInfo *t = reinterpret_cast<asCTypeInfo*>(type); |
| 5037 | if ((t->flags & asOBJ_VALUE) && (t->flags & asOBJ_GC)) |
| 5038 | { |
| 5039 | CallObjectMethod(ref, this, CastToObjectType(t)->beh.gcEnumReferences); |
| 5040 | } |
| 5041 | } |
| 5042 | |
| 5043 | // interface |
| 5044 | void asCScriptEngine::ForwardGCReleaseReferences(void *ref, asITypeInfo *type) |
no test coverage detected