UNPKG

916 BMarkdownView Raw
1# Static class features support for Acorn
2
3[![NPM version](https://img.shields.io/npm/v/acorn-class-fields.svg)](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).