Closed GoogleCodeExporter closed 9 years ago
Could you give me a core dump file? or more call stack including the v8 parts?
#
# Fatal error in w:\external\lib\v8\src\objects-inl.h, line 1586
# CHECK(object->IsJSObject()) failed
#
This error hits the following line to cast type, it seems a situation that pyv8
try to
cast a invalid object to JSObject, so I should know where the issue occured.
CAST_ACCESSOR(JSObject)
#define CAST_ACCESSOR(type) \
type* type::cast(Object* object) { \
ASSERT(object->Is##type()); \
return reinterpret_cast<type*>(object); \
}
Thanks
Original comment by flier...@gmail.com
on 20 Mar 2010 at 1:55
Please reopen it when you could reproduce it, thanks.
Original comment by flier...@gmail.com
on 10 Aug 2011 at 5:27
Original issue reported on code.google.com by
mmura...@dieresys.com.ar
on 19 Mar 2010 at 8:41