[Webkit-unassigned] [Bug 152028] Unexpected exception assigning to this._property inside arrow function

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Dec 8 18:02:29 PST 2015


https://bugs.webkit.org/show_bug.cgi?id=152028

--- Comment #2 from Joseph Pecoraro <joepeck at webkit.org> ---
For example, I would expect these to be identical in this situation:

        this._id = requestAnimationFrame(() => {
            this._id = undefined;
        });

        this._id = requestAnimationFrame(function() {
            this._id = undefined;
        }.bind(this));

However currently the arrow function version is throwing that runtime exception.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20151209/5dd9be4e/attachment.html>


More information about the webkit-unassigned mailing list