internal
| 1760 | |
| 1761 | // internal |
| 1762 | void asCScriptFunction::ReleaseAllHandles(asIScriptEngine *) |
| 1763 | { |
| 1764 | asASSERT( funcType == asFUNC_DELEGATE ); |
| 1765 | |
| 1766 | // Release paramaters |
| 1767 | |
| 1768 | // Delegate |
| 1769 | if( objForDelegate ) |
| 1770 | engine->ReleaseScriptObject(objForDelegate, funcForDelegate->GetObjectType()); |
| 1771 | objForDelegate = 0; |
| 1772 | } |
| 1773 | |
| 1774 | // interface |
| 1775 | bool asCScriptFunction::IsShared() const |
no test coverage detected