Closed Bug 457824 Opened 16 years ago Closed 16 years ago

Decompilation of "new a(b).c;" oscillates

Categories

(Core :: JavaScript Engine, defect)

x86
macOS
defect
Not set
normal

Tracking

()

VERIFIED FIXED

People

(Reporter: jruderman, Assigned: gal)

References

Details

(Keywords: regression, testcase)

Attachments

(1 file, 1 obsolete file)

js> g = (function() { new a(b).c })
function () {
    (new a(b)).c;
}
js> g = eval("(" + g + ")")
function () {
    new a(b).c;
}
js> g = eval("(" + g + ")")
function () {
    (new a(b)).c;
}
js> g = eval("(" + g + ")")
function () {
    new a(b).c;
}

Regression from http://hg.mozilla.org/tracemonkey/rev/ac2826ba4ddb (from bug 457789).
Assignee: general → gal
Attachment #341212 - Flags: review?(shaver)
Attached patch v2Splinter Review
Attachment #341212 - Attachment is obsolete: true
Attachment #341213 - Flags: review?
Attachment #341212 - Flags: review?(shaver)
Attachment #341213 - Attachment is patch: true
Attachment #341213 - Attachment mime type: application/octet-stream → text/plain
Attachment #341213 - Flags: review? → review?(shaver)
Comment on attachment 341213 [details] [diff] [review]
v2

r+me, andreas asked on AIM for a substitution ;-).

/be
Attachment #341213 - Flags: review?(shaver) → review+
http://hg.mozilla.org/tracemonkey/rev/2255cddff8ef
Status: NEW → RESOLVED
Closed: 16 years ago
Resolution: --- → FIXED
/cvsroot/mozilla/js/tests/js1_5/decompilation/regress-457824.js,v  <--  regress-457824.js
initial revision: 1.1

http://hg.mozilla.org/mozilla-central/rev/b04c04268a94
Flags: in-testsuite+
Flags: in-litmus-
v 1.9.1
Status: RESOLVED → VERIFIED
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: