Home
last modified time | relevance | path

Searched refs:acorn (Results 1 – 25 of 40) sorted by relevance

12

/plugin/asciidocjs/node_modules/is-expression/
DCHANGELOG.md7 - Updated to acorn ~4.0.0
10 - See [acorn's CHANGELOG][acorn-4.0.0] for a full list of changes.
14 - Updated to acorn ~3.3.0
17 - See [acorn's CHANGELOG][acorn-3.3.0] for a full list of changes.
21 - Updated to acorn ~3.1.0
22 - See [acorn's CHANGELOG][acorn-3.1.0] for a list of changes.
23 - Even though it is a minor version bump for acorn, the new features are not
24 in parts of acorn we are using, and thus a patch level bump is warranted.
28 - Updated to acorn ~3.0.2
29 - See [acorn's CHANGELOG][acorn-3.0.0] for a list of breaking changes.
[all …]
Dindex.js3 var acorn = require('acorn'); variable
18 var parser = new acorn.Parser(options, src, 0);
33 if (parser.type !== acorn.tokTypes.eof) {
DREADME.md50 // at Parser.pp.raise (acorn/dist/acorn.js:940:13)
/plugin/asciidocjs/node_modules/with/node_modules/acorn/dist/
Dacorn_loose.js4 …(factory((global.acorn = global.acorn || {}, global.acorn.loose = global.acorn.loose || {}),global…
5 }(this, function (exports,acorn) { 'use strict'; argument
7 var acorn__default = 'default' in acorn ? acorn['default'] : acorn;
15 this.toks = acorn.tokenizer(input, options)
18 this.tok = this.last = {type: acorn.tokTypes.eof, start: 0, end: 0}
21 this.tok.loc = new acorn.SourceLocation(this.toks, here, here)
34 …return new acorn.Node(this.toks, this.tok.start, this.options.locations ? this.tok.loc.start : nul…
43 return new acorn.Node(this.toks, pos[0], pos[1])
45 return new acorn.Node(this.toks, pos)
67 this.last = {type: acorn.tokTypes.name, start: dummy.start, end: dummy.start, loc: dummy.loc}
[all …]
Dwalk.js4 (factory((global.acorn = global.acorn || {}, global.acorn.walk = global.acorn.walk || {})));
/plugin/asciidocjs/node_modules/acorn-globals/
DREADME.md1 # acorn-globals
3 Detect global variables in JavaScript using acorn
5 …ps://img.shields.io/travis/ForbesLindesay/acorn-globals/master.svg)](https://travis-ci.org/ForbesL…
6 …](https://img.shields.io/david/ForbesLindesay/acorn-globals.svg)](https://david-dm.org/ForbesLinde…
7 [![NPM version](https://img.shields.io/npm/v/acorn-globals.svg)](https://www.npmjs.org/package/acor…
11 npm install acorn-globals
19 var detect = require('acorn-globals');
Dindex.js3 var acorn = require('acorn'); variable
22 return acorn.parse(source, {
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/loose/
Dindex.js32 import acorn from "acorn"
40 acorn.defaultOptions.tabSize = 4
48 acorn.parse_dammit = parse_dammit
49 acorn.LooseParser = LooseParser
50 acorn.pluginsLoose = pluginsLoose
/plugin/asciidocjs/node_modules/acorn/
DREADME.md3 [![Build Status](https://travis-ci.org/ternjs/acorn.svg?branch=master)](https://travis-ci.org/ternj…
4 [![NPM version](https://img.shields.io/npm/v/acorn.svg)](https://www.npmjs.com/package/acorn)
5 [![CDNJS](https://img.shields.io/cdnjs/v/acorn.svg)](https://cdnjs.com/libraries/acorn)
13 [MIT license](https://github.com/ternjs/acorn/blob/master/LICENSE).
16 [report bugs](https://github.com/ternjs/acorn/issues) or create pull
17 requests on [github](https://github.com/ternjs/acorn). For questions
23 The easiest way to install acorn is with [`npm`][npm].
28 npm install acorn
34 git clone https://github.com/ternjs/acorn.git
43 global object `acorn` will be defined, and all the exported properties
[all …]
/plugin/asciidocjs/node_modules/with/node_modules/acorn/
DREADME.md3 [![Build Status](https://travis-ci.org/ternjs/acorn.svg?branch=master)](https://travis-ci.org/ternj…
4 [![NPM version](https://img.shields.io/npm/v/acorn.svg)](https://www.npmjs.com/package/acorn)
12 [MIT license](https://github.com/ternjs/acorn/blob/master/LICENSE).
15 [report bugs](https://github.com/ternjs/acorn/issues) or create pull
16 requests on [github](https://github.com/ternjs/acorn). For questions
22 The easiest way to install acorn is with [`npm`][npm].
27 npm install acorn
33 git clone https://github.com/ternjs/acorn.git
42 global object `acorn` will be defined, and all the exported properties
47 This is implemented in `dist/acorn.js`, and is what you get when you
[all …]
/plugin/asciidocjs/node_modules/acorn/src/bin/
Dacorn.js3 import * as acorn from "acorn"
38 try { result = acorn.parse(code, options) }
42 let tokenizer = acorn.tokenizer(code, options), token
47 if (token.type == acorn.tokTypes.eof) break
/plugin/asciidocjs/node_modules/acorn/bin/
Dacorn6 var acorn = require('../dist/acorn.js');
45 try { result = acorn.parse(code, options) }
49 var tokenizer = acorn.tokenizer(code, options), token
54 if (token.type == acorn.tokTypes.eof) break
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/bin/
Dacorn.js3 import * as acorn from "acorn"
36 try { result = acorn.parse(code, options) }
40 let tokenizer = acorn.tokenizer(code, options), token
45 if (token.type == acorn.tokTypes.eof) break
/plugin/asciidocjs/node_modules/with/node_modules/acorn/bin/
Dacorn6 var acorn = require('../dist/acorn.js');
43 try { result = acorn.parse(code, options) }
47 var tokenizer = acorn.tokenizer(code, options), token
52 if (token.type == acorn.tokTypes.eof) break
/plugin/asciidocjs/node_modules/with/node_modules/.bin/
Dacorn1 ../acorn/bin/acorn
/plugin/asciidocjs/node_modules/.bin/
Dacorn1 ../acorn/bin/acorn
/plugin/asciidocjs/node_modules/with/node_modules/acorn/rollup/
Dconfig.loose.js8 acorn: './acorn.js'
11 acorn: 'acorn'
Dconfig.bin.js10 acorn: '../dist/acorn.js'
/plugin/asciidocjs/node_modules/promise/
Dbuild.js5 var acorn = require('acorn'); variable
23 var ast = acorn.parse(src);
/plugin/asciidocjs/node_modules/acorn/dist/
Dacorn_loose.js4 …(factory((global.acorn = global.acorn || {}, global.acorn.loose = global.acorn.loose || {}),global…
/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/bin/
Duglifyjs11 var acorn;
168 if (ARGS.acorn) {
169 acorn = require("acorn");
301 if (ARGS.acorn || ARGS.spidermonkey) {
351 else if (ARGS.acorn) {
352 TOPLEVEL = acorn.parse(code, {
418 if (ARGS.acorn || ARGS.spidermonkey) time_it("convert_ast", function(){
/plugin/asciidocjs/node_modules/with/
Dindex.js4 var acorn = require('acorn'); variable
9 return acorn.parse(source, {
/plugin/structsection/
Dyarn.lock141 "acorn-jsx@npm:^5.3.2":
143 resolution: "acorn-jsx@npm:5.3.2"
145 acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
150 "acorn@npm:^8.15.0":
152 resolution: "acorn@npm:8.15.0"
154 acorn: bin/acorn
358 acorn: "npm:^8.15.0"
359 acorn-jsx: "npm:^5.3.2"
/plugin/asciidocjs/node_modules/babylon/
DREADME.md21 Heavily based on [acorn](https://github.com/marijnh/acorn) and [acorn-jsx](https://github.com/RReve…
/plugin/combo/
H A Dyarn.lock132 acorn-walk@^8.3.2:
134 resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz"
137 acorn "^8.11.0"
139 acorn@^8.11.0, acorn@^8.14.0:
141 resolved "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz"
574 acorn "^8.14.0"
898 acorn-walk "^8.3.2"

12