()
| 16 | static [`skey${!this ? a : false}`] = this.CLASS ? a : false; |
| 17 | |
| 18 | test() { |
| 19 | expect(this.#field).toBe(42); |
| 20 | expect(this.field).toBe(42); |
| 21 | expect(this.#method()).toBe(42); |
| 22 | expect(this.method()).toBe(42); |
| 23 | expect(this.key42).toBe(42); |
| 24 | } |
| 25 | |
| 26 | static stest() { |
| 27 | expect(Class.#sfield).toBe(42); |
no test coverage detected