[Pkg-javascript-commits] [node-acorn-jsx] 97/484: Mark release 0.1
Bastien Roucariès
rouca at moszumanska.debian.org
Sat Aug 19 14:20:10 UTC 2017
This is an automated email from the git hooks/post-receive script.
rouca pushed a commit to branch master
in repository node-acorn-jsx.
commit c108741d0796be08592dc9b1493c740be9ff804a
Author: Marijn Haverbeke <marijnh at gmail.com>
Date: Thu Feb 14 10:00:19 2013 +0100
Mark release 0.1
---
acorn.js | 9 ++++++++-
index.html | 8 ++++++--
package.json | 2 +-
3 files changed, 15 insertions(+), 4 deletions(-)
diff --git a/acorn.js b/acorn.js
index f7959ae..7048e91 100644
--- a/acorn.js
+++ b/acorn.js
@@ -12,11 +12,18 @@
// Please use the [github bug tracker][ghbt] to report issues.
//
// [ghbt]: https://github.com/marijnh/acorn/issues
+//
+// This file defines the main parser interface. The library also comes
+// with a [error-tolerant parser][dammit] and an
+// [abstract syntax tree walker][walk], defined in other files.
+//
+// [dammit]: acorn_loose.js
+// [walk]: util/walk.js
(function(exports) {
"use strict";
- exports.version = "0.0.2";
+ exports.version = "0.1.0";
// The main exported interface (under `self.acorn` when in the
// browser) is a `parse` function that takes a code string and
diff --git a/index.html b/index.html
index 4e3d209..9e25eff 100644
--- a/index.html
+++ b/index.html
@@ -10,10 +10,14 @@ taken from <a href="http://esprima.org">Esprima</a> by Ariya Hidayat.</p>
https://github.com/marijnh/acorn.git
</code></pre>
-<p>Please use the <a href="https://github.com/marijnh/acorn/issues">github bug tracker</a> to report issues.</p> </td> <td class="code"> <div class="highlight"><pre><span class="p">(</span><span class="kd">function</span><span class="p">(</span><span class="nx">exports</span><span class="p">)</span> <span class="p">{</span>
+<p>Please use the <a href="https://github.com/marijnh/acorn/issues">github bug tracker</a> to report issues.</p>
+
+<p>This file defines the main parser interface. The library also comes
+with a <a href="acorn_loose.js">error-tolerant parser</a> and an
+<a href="util/walk.js">abstract syntax tree walker</a>, defined in other files.</p> </td> <td class="code"> <div class="highlight"><pre><span class="p">(</span><span class="kd">function</span><span class="p">(</span><span class="nx">exports</span><span class="p">)</span> <span class="p">{</span>
<span class="s2">"use strict"</span><span class="p">;</span>
- <span class="nx">exports</span><span class="p">.</span><span class="nx">version</span> <span class="o">=</span> <span class="s2">"0.0.2"</span><span class="p">;</span></pre></div> </td> </tr> <tr id="section-2"> <td class="docs"> <div class="pilwrap"> <a class="pilcrow" href="#section-2">¶</a> </div> <p>The main exported interface (under <code>self.ac [...]
+ <span class="nx">exports</span><span class="p">.</span><span class="nx">version</span> <span class="o">=</span> <span class="s2">"0.1.0"</span><span class="p">;</span></pre></div> </td> </tr> <tr id="section-2"> <td class="docs"> <div class="pilwrap"> <a class="pilcrow" href="#section-2">¶</a> </div> <p>The main exported interface (under <code>self.ac [...]
browser) is a <code>parse</code> function that takes a code string and
returns an abstract syntax tree as specified by <a href="https://developer.mozilla.org/en-US/docs/SpiderMonkey/Parser_API">Mozilla parser
API</a>, with the caveat that the SpiderMonkey-specific syntax
diff --git a/package.json b/package.json
index e4f125f..41c0901 100644
--- a/package.json
+++ b/package.json
@@ -3,7 +3,7 @@
"description": "ECMAScript parser",
"homepage": "http://marijnhaverbeke.nl/acorn/",
"main": "acorn.js",
- "version": "0.0.2",
+ "version": "0.1.0",
"engines": {"node": ">=0.4.0"},
"maintainers": [{"name": "Marijn Haverbeke",
"email": "marijnh at gmail.com",
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-acorn-jsx.git
More information about the Pkg-javascript-commits
mailing list