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;
}
}
FreeMasen commented
Thank you for the bug report, I will try and figure out what is happening here this weekend.
FreeMasen commented
This was merged as part of 0.8.1