Prevent module transforms from rewriting `this` to `void 0` when found in the values of private class properties. Add tests to prevent regressions.
6 lines
59 B
JavaScript
6 lines
59 B
JavaScript
class Example {
|
|
#method() {
|
|
console.log(this);
|
|
}
|
|
}
|