Okay, now my code breaks on this assertion when trying to create a
context scope:

ASSERT(location_ != NULL);

In this piece of code (handles-inl.h):

template <class T>
inline T* Handle<T>::operator*() const {
  ASSERT(location_ != NULL);
  ASSERT(reinterpret_cast<Address>(*location_) != kHandleZapValue);
  return *BitCast<T**>(location_);
}

-- 
v8-users mailing list
[email protected]
http://groups.google.com/group/v8-users

Reply via email to