Accessing a property inside an accessor with the same name will cause infinite recursion.
get foo() {
return this.foo;
}
set foo(v) {
this.foo = v;
}
get foo() {
return this._foo;
}
set foo(v) {
this._foo = v;
}
get bar() {
return that.bar;
}
set bar(v) {
that.bar = v;
}
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too