Almost there.
https://codereview.chromium.org/919653002/diff/140001/src/objects.cc
File src/objects.cc (right):
https://codereview.chromium.org/919653002/diff/140001/src/objects.cc#newcode10330
src/objects.cc:10330: String* JSFunction::DebugName() {
This is not GC-safe. GetDataProperty may cause GC, at which point the
JSFunction itself (this) may be moved and becomes invalid. Calling
shared() would then crash.
Please turn all of this into handlified code with this signature:
(static) Handle<String> JSFunction::DebugName(Handle<JSFunction>).
https://codereview.chromium.org/919653002/
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" 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/d/optout.