On 2015/06/03 06:28:44, rossberg wrote:
Does this also work correctly if the (direct, sloppy) eval contains a 'var'
declaration?

   () => eval("var x = 666"), x

should return 666. Wouldn't the x still go to the wrong context, or am I
misunderstanding the CL?

Just to clarify, did you mean the following arrow?

  () => (eval("var x = 666"), x)

This one work correctly after my fix.

https://codereview.chromium.org/1146063006/

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