Closed
Bug 350681
Opened 18 years ago
Closed 17 years ago
"import window.null" changes during round-trip
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: jruderman, Unassigned)
References
Details
(Keywords: testcase)
> function() { import window.null }
function () { import window['null']; }
> function () { import window['null']; }
function () { import window["null"]; }
Comment 1•18 years ago
|
||
Jesse, I'd like to not worry about this for a while. It's correct, just a bother for you to avoid a false positive, right?
/be
Reporter | ||
Comment 2•18 years ago
|
||
Ok. I've tagged the import/export things in the fuzzer with "mismatchok", so this bug and other mismatches with import/export won't trigger an alert. The fuzzer can still test for completely bogus decompilation, crashes when executing, etc.
This is fixed by the patch for bug 355736, too:
js> "" + function f() { import window.null }
function f() {
import window.null;
}
Reporter | ||
Comment 4•17 years ago
|
||
This bug is irrelevant now that import/export have been removed (bug 447713).
Status: NEW → RESOLVED
Closed: 17 years ago
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•