RESOLVED FIXED 150453
We don't properly optimize TDZ checks when we declare a let variable without an initializer
https://bugs.webkit.org/show_bug.cgi?id=150453
Summary We don't properly optimize TDZ checks when we declare a let variable without ...
Saam Barati
Reported 2015-10-22 10:56:46 PDT
i.e: ``` let v; return v; ``` has a TDZ check on the return value. But, if we do: ``` let v = 20; return v; ``` we optimize out the TDZ check.
Attachments
Patch (1.36 KB, patch)
2016-03-29 12:45 PDT, Saam Barati
no flags
Saam Barati
Comment 1 2016-03-26 11:53:24 PDT
This is probably a one line patch. I'm going to do it soon
Saam Barati
Comment 2 2016-03-29 12:45:57 PDT
Mark Lam
Comment 3 2016-03-29 12:54:08 PDT
Comment on attachment 275121 [details] Patch r=me
WebKit Commit Bot
Comment 4 2016-03-29 15:11:23 PDT
Comment on attachment 275121 [details] Patch Clearing flags on attachment: 275121 Committed r198803: <http://trac.webkit.org/changeset/198803>
WebKit Commit Bot
Comment 5 2016-03-29 15:11:27 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.