[Webkit-unassigned] [Bug 138858] Updating an immutable binding does not throw a TypeError exception in a strict mode

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Nov 19 10:41:10 PST 2014


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

--- Comment #1 from Daejun Park <daejunpark at gmail.com> ---
For your information, this issue appears even if I wrapped the code as follows:
function x() {
  "use strict";
  var f = function g() {
    g = 0;
  };
  f(); // TypeError
}
x();

Also, I reported this issue for v8:
https://code.google.com/p/v8/issues/detail?id=3704

but it turns out that it was duplicate:
https://code.google.com/p/v8/issues/detail?id=2243

and it will not be fixed because ES6 will consider this as a syntax error.

Do you have the same decision for this?

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20141119/ac805120/attachment-0002.html>


More information about the webkit-unassigned mailing list