| 208 | template<typename T> |
| 209 | template<typename S> |
| 210 | void WeakCallbackInfo<T>::invoke(NAN_WEAK_CALLBACK_SIG_ data) { |
| 211 | WeakCallbackInfo<T> *cbinfo = unwrap(data); |
| 212 | cbinfo->persistent_.Reset(); |
| 213 | cbinfo->callback_(*cbinfo); |
| 214 | delete cbinfo; |
| 215 | } |
| 216 | |
| 217 | template<typename T> |
| 218 | template<typename S> |