https://codereview.chromium.org/108083005/diff/150001/src/objects.cc
File src/objects.cc (right):

https://codereview.chromium.org/108083005/diff/150001/src/objects.cc#newcode5915
src/objects.cc:5915: if ((filter & SYMBOLIC) && key->IsSymbol()) {
One option here would be:

if (filter & (SYMBOLIC | SYMBOLIC | STRING)) {
  bool is_symbol = key->IsSymbol();

  ...
}
return false;

https://codereview.chromium.org/108083005/

--
--
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/groups/opt_out.

Reply via email to