rusty-ecma/RESSA

constructor scope and getter/setter scope overlaps

Fee0 opened this issue · 2 comments

Fee0 commented

It seems that the scope of constructors somehow overlap with the scope inside getter and setter (setter parameter seem to work).

class e {
    constructor(t) {}

    get a() {
        let t;
    }

    get b(x) {
        let t;
    }
}

Thank you for the bug report, I will try and figure out what is happening here this weekend.

This was merged as part of 0.8.1