Tim McClure 0859535b62 Private class methods stage 3 (#8654)
* Add private method syntax support

* Add private method spec support

* Add private method loose support

* Throw error if static private method is used

* Add more isStatic & isMethod checks

* Remove `writable:false` from private method inits

`writable` is false by default.

* Add private method func obj equality check

* Throw if private accessor is used

* Add check for fields === private method loose mode

* Throw buildCodeFrameErrors instead of Errors

* Move obj destructuring inside for loop

* Remove "computed" from ClassPrivateMethod type def
2018-11-28 16:20:09 -08:00

20 lines
423 B
Markdown

# @babel/plugin-proposal-private-methods
> This plugin transforms private class methods
See our website [@babel/plugin-proposal-private-methods](https://babeljs.io/docs/en/next/babel-plugin-proposal-private-methods.html) for more information.
## Install
Using npm:
```sh
npm install --save-dev @babel/plugin-proposal-private-methods
```
or using yarn:
```sh
yarn add @babel/plugin-proposal-private-methods --dev
```