Prevent module transforms from rewriting `this` to `void 0` when found in the values of private class properties. Add tests to prevent regressions.
4 lines
37 B
JavaScript
4 lines
37 B
JavaScript
class Example {
|
|
property = this;
|
|
}
|