| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| CHANGELOG.md | D | 12-May-2024 | 450 | 29 | 15 | |
| LICENSE | D | 12-May-2024 | 1 KiB | 20 | 16 | |
| README.md | D | 12-May-2024 | 866 | 22 | 13 | |
| index.js | D | 12-May-2024 | 2.2 KiB | 60 | 52 | |
| package.json | D | 12-May-2024 | 920 | 36 | 36 |
README.md
1# Class fields support for Acorn 2 3[](https://www.npmjs.org/package/acorn-class-fields) 4 5This is a plugin for [Acorn](http://marijnhaverbeke.nl/acorn/) - a tiny, fast JavaScript parser, written completely in JavaScript. 6 7It implements support for class fields as defined in the stage 3 proposal [Class field declarations for JavaScript](https://github.com/tc39/proposal-class-fields). The emitted AST follows [an ESTree proposal](https://github.com/estree/estree/pull/180). 8 9## Usage 10 11This module provides a plugin that can be used to extend the Acorn `Parser` class: 12 13```javascript 14const {Parser} = require('acorn'); 15const classFields = require('acorn-class-fields'); 16Parser.extend(classFields).parse('class X { x = 0 }'); 17``` 18 19## License 20 21This plugin is released under an [MIT License](./LICENSE). 22