Open rlconst opened 9 months ago
Private methods in js classes spec.
class Foo { constructor() { // ERROR - [JSC_PARSE_ERROR] Parse error. 'identifier' expected this.#private() } #private() {} }
I also have this issue. Is there any update?
Private methods in js classes spec.