├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── dist ├── grammar.mjs └── grammar.mjs.d.ts ├── formal-data ├── es2015.json ├── es2016.json ├── es2017.json ├── es2018.json ├── es2019.json ├── es2020.json ├── es2021.json ├── es2022.json ├── es5.json └── typescript │ ├── es2015.d.ts │ ├── es2016.d.ts │ ├── es2017.d.ts │ ├── es2018.d.ts │ ├── es2019.d.ts │ ├── es2020.d.ts │ ├── es2021.d.ts │ ├── es2022.d.ts │ └── es5.d.ts ├── package.json ├── src ├── grammar.jison ├── index.mjs └── to-dts.mjs └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/README.md -------------------------------------------------------------------------------- /dist/grammar.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/dist/grammar.mjs -------------------------------------------------------------------------------- /dist/grammar.mjs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/dist/grammar.mjs.d.ts -------------------------------------------------------------------------------- /formal-data/es2015.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/formal-data/es2015.json -------------------------------------------------------------------------------- /formal-data/es2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/formal-data/es2016.json -------------------------------------------------------------------------------- /formal-data/es2017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/formal-data/es2017.json -------------------------------------------------------------------------------- /formal-data/es2018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/formal-data/es2018.json -------------------------------------------------------------------------------- /formal-data/es2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/formal-data/es2019.json -------------------------------------------------------------------------------- /formal-data/es2020.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/formal-data/es2020.json -------------------------------------------------------------------------------- /formal-data/es2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/formal-data/es2021.json -------------------------------------------------------------------------------- /formal-data/es2022.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/formal-data/es2022.json -------------------------------------------------------------------------------- /formal-data/es5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/formal-data/es5.json -------------------------------------------------------------------------------- /formal-data/typescript/es2015.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/formal-data/typescript/es2015.d.ts -------------------------------------------------------------------------------- /formal-data/typescript/es2016.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/formal-data/typescript/es2016.d.ts -------------------------------------------------------------------------------- /formal-data/typescript/es2017.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/formal-data/typescript/es2017.d.ts -------------------------------------------------------------------------------- /formal-data/typescript/es2018.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/formal-data/typescript/es2018.d.ts -------------------------------------------------------------------------------- /formal-data/typescript/es2019.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/formal-data/typescript/es2019.d.ts -------------------------------------------------------------------------------- /formal-data/typescript/es2020.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/formal-data/typescript/es2020.d.ts -------------------------------------------------------------------------------- /formal-data/typescript/es2021.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/formal-data/typescript/es2021.d.ts -------------------------------------------------------------------------------- /formal-data/typescript/es2022.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/formal-data/typescript/es2022.d.ts -------------------------------------------------------------------------------- /formal-data/typescript/es5.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/formal-data/typescript/es5.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/package.json -------------------------------------------------------------------------------- /src/grammar.jison: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/src/grammar.jison -------------------------------------------------------------------------------- /src/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/src/index.mjs -------------------------------------------------------------------------------- /src/to-dts.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/src/to-dts.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estree/formal/HEAD/tsconfig.json --------------------------------------------------------------------------------