| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| CHANGELOG.md | D | 12-May-2024 | 146 | 12 | 6 | |
| LICENSE | D | 12-May-2024 | 1 KiB | 20 | 16 | |
| README.md | D | 12-May-2024 | 916 | 22 | 13 | |
| index.js | D | 12-May-2024 | 4.9 KiB | 127 | 107 | |
| package.json | D | 12-May-2024 | 956 | 36 | 36 |
README.md
1# Static class features support for Acorn 2 3[](https://www.npmjs.org/package/acorn-static-class-features) 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 static class features as defined in the stage 3 proposal [Static class features](https://github.com/tc39/proposal-static-class-features). 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 staticClassFeatures = require('acorn-static-class-features'); 16Parser.extend(staticClassFeatures).parse('class X { static x = 0 }'); 17``` 18 19## License 20 21This plugin is released under an [MIT License](./LICENSE). 22