Closed
Bug 469940
Opened 16 years ago
Closed 16 years ago
Automatic semicolon insertion wrongly done after var with multi-line initializer
Categories
(Core :: JavaScript Engine, defect, P2)
Core
JavaScript Engine
Tracking
()
VERIFIED
FIXED
mozilla1.9.1b3
People
(Reporter: brendan, Assigned: brendan)
Details
(Keywords: testcase, verified1.9.1)
Attachments
(1 file)
460 bytes,
patch
|
mrbkap
:
review+
sayrer
:
approval1.9.1+
|
Details | Diff | Splinter Review |
$ cat /tmp/semi.js
var x = function f() {
return 42;} print(x);
should not be error-corrected, as there is no newline between the var statement and the print(x); statement.
/be
Assignee | ||
Comment 1•16 years ago
|
||
Attachment #353358 -
Flags: review?(mrbkap)
Assignee | ||
Comment 2•16 years ago
|
||
Easy standards-conformance fix.
/be
Flags: wanted1.9.1?
Priority: -- → P2
Updated•16 years ago
|
Attachment #353358 -
Flags: review?(mrbkap) → review+
Updated•16 years ago
|
Flags: wanted1.9.1? → wanted1.9.1+
Assignee | ||
Updated•16 years ago
|
Attachment #353358 -
Flags: approval1.9.1?
Assignee | ||
Comment 3•16 years ago
|
||
Fixed in m-c:
http://hg.mozilla.org/mozilla-central/rev/ebf6828c37b3
/be
Status: ASSIGNED → RESOLVED
Closed: 16 years ago
Resolution: --- → FIXED
Comment 4•16 years ago
|
||
Keywords: fixed1.9.1
Updated•16 years ago
|
Attachment #353358 -
Flags: approval1.9.1? → approval1.9.1+
Comment 5•16 years ago
|
||
Checking in js1_5/LexicalConventions/regress-469940.js
http://hg.mozilla.org/mozilla-central/rev/73494cd74260
Flags: in-testsuite+
Flags: in-litmus-
Comment 6•16 years ago
|
||
v 1.9.1, 1.9.2
Status: RESOLVED → VERIFIED
Keywords: fixed1.9.1 → verified1.9.1
You need to log in
before you can comment on or make changes to this bug.
Description
•