Closed
Bug 355480
Opened 19 years ago
Closed 13 years ago
Round-trip change for "const arguments;"
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
People
(Reporter: jruderman, Unassigned)
References
Details
(Keywords: testcase)
js> f = function() { const arguments; }
function () {
arguments;
}
js> eval("" + f)
function () {
}
Reporter | ||
Comment 1•18 years ago
|
||
js> function() { const arguments, []=y }
function () {
arguments, const [] = y;
}
That really doesn't work :)
Updated•14 years ago
|
OS: Mac OS X → All
Hardware: PowerPC → All
![]() |
||
Comment 2•13 years ago
|
||
Fixed by making 'arguments' a real local binding.
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → DUPLICATE
Reporter | ||
Updated•13 years ago
|
You need to log in
before you can comment on or make changes to this bug.
Description
•