You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've tried using this plugin directly and the stage3 plugin and both throw an error (SyntaxError: Unexpected token) for private getters and setters. I just have a simple example:
classMyClass{get #myMethod(){return'hello';}}
The error is thrown on the line of the getter declaration, right after the get keyword. Just to make sure I wasn't using it wrong, I cloned the repo and ran the tests and it looks like they're failing for the private getters and setters too. Has this feature been removed from the plugin?
The text was updated successfully, but these errors were encountered:
accessing private fields without this is not allowed. private fields can also not be deleted. the spec probably changed after the current tests have been written.
I've tried using this plugin directly and the stage3 plugin and both throw an error (SyntaxError: Unexpected token) for private getters and setters. I just have a simple example:
The error is thrown on the line of the getter declaration, right after the
get
keyword. Just to make sure I wasn't using it wrong, I cloned the repo and ran the tests and it looks like they're failing for the private getters and setters too. Has this feature been removed from the plugin?The text was updated successfully, but these errors were encountered: