Found another bug in Eternal.
The IsEmpty() method is returning an inverted value.
Broken code:
V8_INLINE(bool IsEmpty()) { return index_ != kInitialValue; }
Should be:
V8_INLINE(bool IsEmpty()) { return index_ == kInitialValue; }
Here is the bug report:
https://code.google.com/p/v8/issues/detail?id=2870
--
--
v8-users mailing list
[email protected]
http://groups.google.com/group/v8-users
---
You received this message because you are subscribed to the Google Groups
"v8-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.