Closed Bug 352283 Opened 18 years ago Closed 18 years ago

Missing braces in decompilation of "let" block (involving "while" and "let" expression)

Categories

(Core :: JavaScript Engine, defect)

PowerPC
macOS
defect
Not set
normal

Tracking

()

VERIFIED FIXED

People

(Reporter: jruderman, Unassigned)

References

Details

(Keywords: testcase)

js> function() { while(w) {let (x) { let y; } } }     
function () {
    while (w) {
        let (x)
            let y;
    }
}
Forthcoming patch for bug 352217 fixes this.

/be
Depends on: 352217
Fixed by patch for bug 352217:

js> function() { while(w) {let (x) { let y; } } } 
function () {
    while (w) {
        let (x) {
            let y;
        }
    }
}

/be
Status: NEW → RESOLVED
Closed: 18 years ago
Resolution: --- → FIXED
Checking in regress-352283.js;
/cvsroot/mozilla/js/tests/js1_7/block/regress-352283.js,v  <--  regress-352283.js
initial revision: 1.1
done
Flags: in-testsuite+
verified fixed 1.9 20060914 windows/mac*/linux
bug not in evidence on 1.8...
Status: RESOLVED → VERIFIED
You need to log in before you can comment on or make changes to this bug.