RESOLVED FIXED 156059
[ES6] Arrow function syntax. Add missed test for using 'with' and 'this' in arrow function.
https://bugs.webkit.org/show_bug.cgi?id=156059
Summary [ES6] Arrow function syntax. Add missed test for using 'with' and 'this' in a...
GSkachkov
Reported 2016-03-31 00:18:37 PDT
Add tests that cover following case in arrow function function foo() { let arr = () => { with ({'this': 40}) { return this; } } return arr(); } let o1 = {'this': 20}; assert(o1 === foo.call(o1));
Attachments
Patch (2.29 KB, patch)
2016-04-02 12:52 PDT, GSkachkov
no flags
GSkachkov
Comment 1 2016-04-02 12:52:19 PDT
WebKit Commit Bot
Comment 2 2016-04-02 18:22:23 PDT
Comment on attachment 275475 [details] Patch Clearing flags on attachment: 275475 Committed r198978: <http://trac.webkit.org/changeset/198978>
WebKit Commit Bot
Comment 3 2016-04-02 18:22:26 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.