From 8957b7160ae7341a64f9d53698a95a7c51fab3e3 Mon Sep 17 00:00:00 2001 From: dnalborczyk Date: Sat, 14 Nov 2020 16:53:55 -0500 Subject: [PATCH] docs: remove numeric separators and logical assignment from README --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7e55ae6..92e3f68 100644 --- a/README.md +++ b/README.md @@ -4,13 +4,11 @@ This is a plugin for [Acorn](http://marijnhaverbeke.nl/acorn/) - a tiny, fast JavaScript parser, written completely in JavaScript. -It implements support for all missing [ECMAScript stage 3 proposals](https://github.com/tc39/proposals/blob/master/README.md#stage-3). Neither loose mode nor walk are currently supported. +It implements support for some missing [ECMAScript stage 3 proposals](https://github.com/tc39/proposals/blob/master/README.md#stage-3). Neither loose mode nor walk are currently supported. -- [Numeric Separators](https://github.com/tc39/proposal-numeric-separator) via [acorn-numeric-separator](https://www.npmjs.org/package/acorn-numeric-separator) - [Class field declarations](https://github.com/tc39/proposal-class-fields) via [acorn-class-fields](https://www.npmjs.org/package/acorn-class-fields) - [Private methods and getter/setters for JavaScript classes](https://github.com/tc39/proposal-private-methods) via [acorn-private-methods](https://www.npmjs.org/package/acorn-private-methods) - [Static class features](https://github.com/tc39/proposal-static-class-features) via [acorn-static-class-features](https://www.npmjs.org/package/acorn-static-class-features) -- [Logical assignments](https://github.com/tc39/proposal-logical-assignment) via [acorn-logical-assignment](https://github.com/acornjs/acorn-logical-assignment) ## Usage @@ -19,7 +17,7 @@ This module provides a plugin that can be used to extend the Acorn `Parser` clas ```javascript const {Parser} = require('acorn'); const stage3 = require('acorn-stage3'); -Parser.extend(stage3).parse('100_000n'); +Parser.extend(stage3).parse('class X { #a() {} }'); ``` ## License