https://codereview.chromium.org/919653002/diff/160001/src/objects.cc
File src/objects.cc (right):

https://codereview.chromium.org/919653002/diff/160001/src/objects.cc#newcode10334
src/objects.cc:10334: String* debug_name = NULL;
You should avoid raw pointers in methods that may cause GC. In this case
it should be Handle<String> or event better you can avoid this local
variable altogether:

if (name->IsString())
  return Handle<String>::cast(name);

https://codereview.chromium.org/919653002/

--
--
v8-dev mailing list
v8-dev@googlegroups.com
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 v8-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to