Oh and I also wanted to note, that I left the check as is_strict() in places
where we have options both for strict and sloppy, e.g.,
if (is_strict(...)) {
do_strict_stuff
} else {
do_sloppy_stuff
}
instead of
if (is_sloppy(...)) {
do_sloppy_stuff
} else {
do_strict_stuff
}
So that these places are now (still) consistently checking is_strict and
listing
the strict option first.
https://codereview.chromium.org/894683003/
--
--
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.