rossberg@, this CL enables making inner functions lazy, but it always
context-allocates outer function variables if any inner function refers to a
variable with the same name, e.g.,

function outer() {
  var a; // will be unnecessarily context-allocated
  function inner() {
    var a;
    a = 5;
  }
}

... can you provide more insight into whether this is okay? My gut feeling says it's not okay to add a bunch of stuff into the context unnecessarily, but my V8
fu is not good enough to say that for sure.

https://codereview.chromium.org/641283003/

--
--
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.

Reply via email to