This package has been deprecated

Author message:

acorn>=7.4 supports logical assignments

acorn-logical-assignment

0.1.4 • Public • Published

Logical assignment support for Acorn

NPM version

This is a plugin for Acorn - a tiny, fast JavaScript parser, written completely in JavaScript.

It implements support for logical assignments as defined in the stage 3 proposal Logical Assignments. The AST follows ESTree.

Usage

This module provides a plugin that can be used to extend the Acorn Parser class to parse logical assignments. You can either choose to use it via CommonJS (for example in Node.js) like this

var acorn = require('acorn');
var logicalAssignment = require('acorn-logical-assignment');
acorn.Parser.extend(logicalAssignment).parse('x ||= y');

or as an ECMAScript module like this:

import {Parser} from 'acorn';
import logicalAssignment from 'path/to/acorn-logical-assignment.mjs';
Parser.extend(logicalAssignment).parse('x ||= y');

License

This plugin is released under an MIT License.

Readme

Keywords

none

Package Sidebar

Install

npm i acorn-logical-assignment

Weekly Downloads

10,343

Version

0.1.4

License

MIT

Unpacked Size

27.3 kB

Total Files

19

Last publish

Collaborators

  • adrianheine
  • marijn
  • rreverser