v8.h | v8.h | |||
---|---|---|---|---|
skipping to change at line 520 | skipping to change at line 520 | |||
template <class S> | template <class S> | |||
V8_INLINE bool operator!=(const PersistentBase<S>& that) const { | V8_INLINE bool operator!=(const PersistentBase<S>& that) const { | |||
return !operator==(that); | return !operator==(that); | |||
} | } | |||
template <class S> V8_INLINE bool operator!=(const Handle<S>& that) const { | template <class S> V8_INLINE bool operator!=(const Handle<S>& that) const { | |||
return !operator==(that); | return !operator==(that); | |||
} | } | |||
/** | ||||
* Install a finalization callback on this object. | ||||
* NOTE: There is no guarantee as to *when* or even *if* the callback is | ||||
* invoked. The invocation is performed solely on a best effort basis. | ||||
* As always, GC-based finalization should *not* be relied upon for any | ||||
* critical form of resource management! | ||||
*/ | ||||
template<typename P> | template<typename P> | |||
V8_INLINE void SetWeak( | V8_INLINE void SetWeak( | |||
P* parameter, | P* parameter, | |||
typename WeakCallbackData<T, P>::Callback callback); | typename WeakCallbackData<T, P>::Callback callback); | |||
template<typename S, typename P> | template<typename S, typename P> | |||
V8_INLINE void SetWeak( | V8_INLINE void SetWeak( | |||
P* parameter, | P* parameter, | |||
typename WeakCallbackData<S, P>::Callback callback); | typename WeakCallbackData<S, P>::Callback callback); | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 7 lines changed or added | |||