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:
class MyClass {
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?

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
getkeyword. 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?