From 9d7da687f6a89130f40c1281ec40d86ad7ba1c3d Mon Sep 17 00:00:00 2001 From: BYVoid Date: Wed, 5 Dec 2012 01:38:16 +0800 Subject: [PATCH] Bump version to 0.0.7 --- package.json | 2 +- test/results/continue.js | 2 +- test/results/defer.js | 2 +- test/results/diskusage.js | 2 +- test/results/factor.js | 2 +- test/results/fib.js | 2 +- test/results/for.js | 2 +- test/results/forin.js | 2 +- test/results/if.js | 2 +- test/results/ifvar.js | 2 +- test/results/list.js | 2 +- test/results/loop.js | 2 +- test/results/pi.js | 2 +- test/results/readfile.js | 2 +- test/results/switch.js | 2 +- test/results/switchbreak.js | 2 +- test/results/try_body.js | 2 +- test/results/try_both.js | 2 +- test/results/try_catch.js | 2 +- test/results/try_if.js | 2 +- test/results/whilebreak.js | 2 +- 21 files changed, 21 insertions(+), 21 deletions(-) diff --git a/package.json b/package.json index 7674b6d..40fb9d7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "continuation", - "version": "0.0.6", + "version": "0.0.7", "description": "Continuation.js is a compiler for asynchronous JavaScript Continuation-Passing style transformation", "author": "BYVoid", "license": "BSD", diff --git a/test/results/continue.js b/test/results/continue.js index 1b91c48..eda4e40 100644 --- a/test/results/continue.js +++ b/test/results/continue.js @@ -1,4 +1,4 @@ -/* Generated by Continuation.js v0.0.6 */ +/* Generated by Continuation.js v0.0.7 */ var i; i = 0; function loop_0(loop_0_cont) { diff --git a/test/results/defer.js b/test/results/defer.js index 71ff920..9d15b49 100644 --- a/test/results/defer.js +++ b/test/results/defer.js @@ -1,4 +1,4 @@ -/* Generated by Continuation.js v0.0.6 */ +/* Generated by Continuation.js v0.0.7 */ var fs, err, text, util; fs = require('fs'); (function (cont) { diff --git a/test/results/diskusage.js b/test/results/diskusage.js index 3757047..6440d98 100644 --- a/test/results/diskusage.js +++ b/test/results/diskusage.js @@ -1,4 +1,4 @@ -/* Generated by Continuation.js v0.0.6 */ +/* Generated by Continuation.js v0.0.7 */ var fs, path, err, totalSize, totalBlockSize; fs = require('fs'); function calcDirSize(path, callback) { diff --git a/test/results/factor.js b/test/results/factor.js index c0c4c47..5b236d4 100644 --- a/test/results/factor.js +++ b/test/results/factor.js @@ -1,4 +1,4 @@ -/* Generated by Continuation.js v0.0.6 */ +/* Generated by Continuation.js v0.0.7 */ var factor; factor = function (n, callback) { var rest; diff --git a/test/results/fib.js b/test/results/fib.js index de30cc5..4ef611c 100644 --- a/test/results/fib.js +++ b/test/results/fib.js @@ -1,4 +1,4 @@ -/* Generated by Continuation.js v0.0.6 */ +/* Generated by Continuation.js v0.0.7 */ var fib; fib = function () { var a, current, b; diff --git a/test/results/for.js b/test/results/for.js index e4c1696..a640e47 100644 --- a/test/results/for.js +++ b/test/results/for.js @@ -1,4 +1,4 @@ -/* Generated by Continuation.js v0.0.6 */ +/* Generated by Continuation.js v0.0.7 */ var e, list, _i, _len; list = [ 1, diff --git a/test/results/forin.js b/test/results/forin.js index 2320ecb..d1769da 100644 --- a/test/results/forin.js +++ b/test/results/forin.js @@ -1,4 +1,4 @@ -/* Generated by Continuation.js v0.0.6 */ +/* Generated by Continuation.js v0.0.7 */ for (var key in [1, 2, 3]) { console.log(key); } diff --git a/test/results/if.js b/test/results/if.js index f394595..16b196d 100644 --- a/test/results/if.js +++ b/test/results/if.js @@ -1,4 +1,4 @@ -/* Generated by Continuation.js v0.0.6 */ +/* Generated by Continuation.js v0.0.7 */ var err, text, a; (function (cont) { if (bool) { diff --git a/test/results/ifvar.js b/test/results/ifvar.js index b6cd6d9..37542b4 100644 --- a/test/results/ifvar.js +++ b/test/results/ifvar.js @@ -1,4 +1,4 @@ -/* Generated by Continuation.js v0.0.6 */ +/* Generated by Continuation.js v0.0.7 */ var b, c, i, j, k, p; (function (cont) { if (true) { diff --git a/test/results/list.js b/test/results/list.js index 3125dbe..41f287a 100644 --- a/test/results/list.js +++ b/test/results/list.js @@ -1,4 +1,4 @@ -/* Generated by Continuation.js v0.0.6 */ +/* Generated by Continuation.js v0.0.7 */ var list, i; function delay(num, callback) { setTimeout(function () { diff --git a/test/results/loop.js b/test/results/loop.js index d0f65b4..4e9797d 100644 --- a/test/results/loop.js +++ b/test/results/loop.js @@ -1,4 +1,4 @@ -/* Generated by Continuation.js v0.0.6 */ +/* Generated by Continuation.js v0.0.7 */ var fs, i, err, text; fs = require('fs'); i = 0; diff --git a/test/results/pi.js b/test/results/pi.js index c8257bd..a30775d 100644 --- a/test/results/pi.js +++ b/test/results/pi.js @@ -1,4 +1,4 @@ -/* Generated by Continuation.js v0.0.6 */ +/* Generated by Continuation.js v0.0.7 */ var calcPi, pi; calcPi = function (callback) { var f; diff --git a/test/results/readfile.js b/test/results/readfile.js index a075c59..cb940ce 100644 --- a/test/results/readfile.js +++ b/test/results/readfile.js @@ -1,4 +1,4 @@ -/* Generated by Continuation.js v0.0.6 */ +/* Generated by Continuation.js v0.0.7 */ var fs, a, err, text; fs = require('fs'); a = 1; diff --git a/test/results/switch.js b/test/results/switch.js index 7fae224..7e43b2b 100644 --- a/test/results/switch.js +++ b/test/results/switch.js @@ -1,4 +1,4 @@ -/* Generated by Continuation.js v0.0.6 */ +/* Generated by Continuation.js v0.0.7 */ var err, text, end; (function (cont) { function case_0(cont) { diff --git a/test/results/switchbreak.js b/test/results/switchbreak.js index 27c1a01..f9654f1 100644 --- a/test/results/switchbreak.js +++ b/test/results/switchbreak.js @@ -1,4 +1,4 @@ -/* Generated by Continuation.js v0.0.6 */ +/* Generated by Continuation.js v0.0.7 */ var val, num; val = 'a'; num = 1; diff --git a/test/results/try_body.js b/test/results/try_body.js index 3eff663..ff110c8 100644 --- a/test/results/try_body.js +++ b/test/results/try_body.js @@ -1,4 +1,4 @@ -/* Generated by Continuation.js v0.0.6 */ +/* Generated by Continuation.js v0.0.7 */ var a, err; (function (cont) { try { diff --git a/test/results/try_both.js b/test/results/try_both.js index 0d16dbf..c9a6b91 100644 --- a/test/results/try_both.js +++ b/test/results/try_both.js @@ -1,4 +1,4 @@ -/* Generated by Continuation.js v0.0.6 */ +/* Generated by Continuation.js v0.0.7 */ (function (cont) { (function (cont) { try { diff --git a/test/results/try_catch.js b/test/results/try_catch.js index 3803a7f..f034aa0 100644 --- a/test/results/try_catch.js +++ b/test/results/try_catch.js @@ -1,4 +1,4 @@ -/* Generated by Continuation.js v0.0.6 */ +/* Generated by Continuation.js v0.0.7 */ (function (cont) { try { throw new Error('my error'); diff --git a/test/results/try_if.js b/test/results/try_if.js index 0f96e47..a5ea756 100644 --- a/test/results/try_if.js +++ b/test/results/try_if.js @@ -1,4 +1,4 @@ -/* Generated by Continuation.js v0.0.6 */ +/* Generated by Continuation.js v0.0.7 */ (function (cont) { try { (function (cont) { diff --git a/test/results/whilebreak.js b/test/results/whilebreak.js index f4a20b3..932ee02 100644 --- a/test/results/whilebreak.js +++ b/test/results/whilebreak.js @@ -1,4 +1,4 @@ -/* Generated by Continuation.js v0.0.6 */ +/* Generated by Continuation.js v0.0.7 */ var i; i = 0; function loop_0(loop_0_cont) {