Skip to content

Commit

Permalink
Bump version to 0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
BYVoid committed Dec 4, 2012
1 parent f0663fa commit 9d7da68
Show file tree
Hide file tree
Showing 21 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion test/results/continue.js
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion test/results/defer.js
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion test/results/diskusage.js
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion test/results/factor.js
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion test/results/fib.js
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion test/results/for.js
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
2 changes: 1 addition & 1 deletion test/results/forin.js
Original file line number Diff line number Diff line change
@@ -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);
}
2 changes: 1 addition & 1 deletion test/results/if.js
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion test/results/ifvar.js
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion test/results/list.js
Original file line number Diff line number Diff line change
@@ -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 () {
Expand Down
2 changes: 1 addition & 1 deletion test/results/loop.js
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion test/results/pi.js
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion test/results/readfile.js
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion test/results/switch.js
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion test/results/switchbreak.js
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion test/results/try_body.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Generated by Continuation.js v0.0.6 */
/* Generated by Continuation.js v0.0.7 */
var a, err;
(function (cont) {
try {
Expand Down
2 changes: 1 addition & 1 deletion test/results/try_both.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Generated by Continuation.js v0.0.6 */
/* Generated by Continuation.js v0.0.7 */
(function (cont) {
(function (cont) {
try {
Expand Down
2 changes: 1 addition & 1 deletion test/results/try_catch.js
Original file line number Diff line number Diff line change
@@ -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');
Expand Down
2 changes: 1 addition & 1 deletion test/results/try_if.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Generated by Continuation.js v0.0.6 */
/* Generated by Continuation.js v0.0.7 */
(function (cont) {
try {
(function (cont) {
Expand Down
2 changes: 1 addition & 1 deletion test/results/whilebreak.js
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down

0 comments on commit 9d7da68

Please sign in to comment.