* fix: support static private field destructure set ([C.#p] = [0]) * 🚧 * fix: add compatibility warning for older @babel/helper versions * refactor: extract common routines among classPrivateFiled helpers * More 🚧
15 lines
292 B
JavaScript
15 lines
292 B
JavaScript
class Cl {
|
|
static #privateField = 0;
|
|
|
|
static get #privateFieldValue() {
|
|
return this.#privateField;
|
|
}
|
|
|
|
constructor() {
|
|
expect(() => Cl.#privateFieldValue = 1).toThrow(TypeError);
|
|
expect(() => ([Cl.#privateFieldValue] = [1])).toThrow(TypeError);
|
|
}
|
|
}
|
|
|
|
const cl = new Cl();
|