Skip to content

Commit

Permalink
issue #254 - bumped version to 0.12.0 and recompiled
Browse files Browse the repository at this point in the history
  • Loading branch information
bjouhier committed Mar 14, 2015
1 parent e5a58bf commit dfc2a9f
Show file tree
Hide file tree
Showing 26 changed files with 1,130 additions and 36 deletions.
2 changes: 1 addition & 1 deletion lib/callbacks/builtins.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Generated by streamline 0.10.17 (callbacks) - DO NOT EDIT ***/ var __rt=require('../callbacks/runtime').runtime(__filename, false),__func=__rt.__func,__cb=__rt.__cb;
/*** Generated by streamline 0.12.0 (callbacks) - DO NOT EDIT ***/ var __rt=require('../callbacks/runtime').runtime(__filename, false),__func=__rt.__func,__cb=__rt.__cb;



Expand Down
2 changes: 1 addition & 1 deletion lib/callbacks/compile.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Generated by streamline 0.10.17 (callbacks) - DO NOT EDIT ***/ "use strict"; var __rt=require('../callbacks/runtime').runtime(__filename, false),__func=__rt.__func,__cb=__rt.__cb,__catch=__rt.__catch,__tryCatch=__rt.__tryCatch;
/*** Generated by streamline 0.12.0 (callbacks) - DO NOT EDIT ***/ "use strict"; var __rt=require('../callbacks/runtime').runtime(__filename, false),__func=__rt.__func,__cb=__rt.__cb,__catch=__rt.__catch,__tryCatch=__rt.__tryCatch;



Expand Down
2 changes: 1 addition & 1 deletion lib/callbacks/flows.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Generated by streamline 0.10.17 (callbacks) - DO NOT EDIT ***/ var __rt=require('../callbacks/runtime').runtime(__filename, false),__func=__rt.__func,__cb=__rt.__cb;
/*** Generated by streamline 0.12.0 (callbacks) - DO NOT EDIT ***/ var __rt=require('../callbacks/runtime').runtime(__filename, false),__func=__rt.__func,__cb=__rt.__cb;



Expand Down
6 changes: 3 additions & 3 deletions lib/callbacks/runtime-all.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ function require(str) {

///
/// * `fn = globals.withContext(fn, cx)`
/// wraps a function so that it executes with context `cx` (or with a new empty context if `cx` is falsy).
/// wraps a function so that it executes with context `cx` (or a wrapper around current context if `cx` is falsy).
/// The previous context will be restored when the function returns (or throws).
/// returns the wrapped function.
g.withContext = function(fn, cx) {
return function() {
var oldContext = g.context;
g.context = cx || {};
g.context = cx || Object.create(oldContext);
try {
return fn.apply(this, arguments)
} finally {
Expand Down Expand Up @@ -422,7 +422,7 @@ function require(str) {
exports.stackTraceEnabled = true;
})(typeof exports !== 'undefined' ? exports : (Streamline.runtime = Streamline.runtime || {}));
require && require("../callbacks/builtins");
/*** Generated by streamline 0.10.17 (callbacks) - DO NOT EDIT ***/ var __rt=require('../callbacks/runtime').runtime(__filename, false),__func=__rt.__func,__cb=__rt.__cb;
/*** Generated by streamline 0.12.0 (callbacks) - DO NOT EDIT ***/ var __rt=require('../callbacks/runtime').runtime(__filename, false),__func=__rt.__func,__cb=__rt.__cb;



Expand Down
8 changes: 4 additions & 4 deletions lib/callbacks/transform-all.js
Original file line number Diff line number Diff line change
Expand Up @@ -7731,7 +7731,7 @@ function require(str) {
})();
"use strict";
(function(exports) {
exports.version = "0.10.17";
exports.version = "0.12.0";
})(typeof exports !== 'undefined' ? exports : (Streamline.version = Streamline.version || {}));
"use strict";
(function() {
Expand Down Expand Up @@ -9912,13 +9912,13 @@ if (typeof exports !== 'undefined') {

///
/// * `fn = globals.withContext(fn, cx)`
/// wraps a function so that it executes with context `cx` (or with a new empty context if `cx` is falsy).
/// wraps a function so that it executes with context `cx` (or a wrapper around current context if `cx` is falsy).
/// The previous context will be restored when the function returns (or throws).
/// returns the wrapped function.
g.withContext = function(fn, cx) {
return function() {
var oldContext = g.context;
g.context = cx || {};
g.context = cx || Object.create(oldContext);
try {
return fn.apply(this, arguments)
} finally {
Expand Down Expand Up @@ -10271,7 +10271,7 @@ if (typeof exports !== 'undefined') {
exports.stackTraceEnabled = true;
})(typeof exports !== 'undefined' ? exports : (Streamline.runtime = Streamline.runtime || {}));
require && require("../callbacks/builtins");
/*** Generated by streamline 0.10.17 (callbacks) - DO NOT EDIT ***/ var __rt=require('../callbacks/runtime').runtime(__filename, false),__func=__rt.__func,__cb=__rt.__cb;
/*** Generated by streamline 0.12.0 (callbacks) - DO NOT EDIT ***/ var __rt=require('../callbacks/runtime').runtime(__filename, false),__func=__rt.__func,__cb=__rt.__cb;



Expand Down
2 changes: 1 addition & 1 deletion lib/fibers-fast/builtins.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Generated by streamline 0.10.17 (fibers-fast) --aggressive - DO NOT EDIT ***/var fstreamline__ = require("../fibers-fast/runtime");(function(){})(); fstreamline__.create(function(_) { /**
/*** Generated by streamline 0.12.0 (fibers-fast) --aggressive - DO NOT EDIT ***/var fstreamline__ = require("../fibers-fast/runtime");(function(){})(); fstreamline__.create(function(_) { /**
* Copyright (c) 2012 Bruno Jouhier <[email protected]>
* MIT License
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/fibers-fast/flows.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Generated by streamline 0.10.17 (fibers-fast) --aggressive - DO NOT EDIT ***/var fstreamline__ = require("../fibers-fast/runtime");(function(){})(); fstreamline__.create(function(_) { /**
/*** Generated by streamline 0.12.0 (fibers-fast) --aggressive - DO NOT EDIT ***/var fstreamline__ = require("../fibers-fast/runtime");(function(){})(); fstreamline__.create(function(_) { /**
* Copyright (c) 2011 Bruno Jouhier <[email protected]>
*
* Permission is hereby granted, free of charge, to any person
Expand Down
2 changes: 1 addition & 1 deletion lib/fibers/builtins.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Generated by streamline 0.10.17 (fibers) - DO NOT EDIT ***/var fstreamline__ = require("../fibers/runtime"); (function(){})();(fstreamline__.create(function(_) { /**
/*** Generated by streamline 0.12.0 (fibers) - DO NOT EDIT ***/var fstreamline__ = require("../fibers/runtime"); (function(){})();(fstreamline__.create(function(_) { /**
* Copyright (c) 2012 Bruno Jouhier <[email protected]>
* MIT License
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/fibers/flows.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Generated by streamline 0.10.17 (fibers) - DO NOT EDIT ***/var fstreamline__ = require("../fibers/runtime"); (function(){})();(fstreamline__.create(function(_) { /**
/*** Generated by streamline 0.12.0 (fibers) - DO NOT EDIT ***/var fstreamline__ = require("../fibers/runtime"); (function(){})();(fstreamline__.create(function(_) { /**
* Copyright (c) 2011 Bruno Jouhier <[email protected]>
*
* Permission is hereby granted, free of charge, to any person
Expand Down
2 changes: 1 addition & 1 deletion lib/generators-fast/builtins.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Generated by streamline 0.10.17 (generators-fast) - DO NOT EDIT ***/var galaxy = require("../generators-fast/runtime");(function(){})();galaxy.unstar(function*(_) { /**
/*** Generated by streamline 0.12.0 (generators-fast) - DO NOT EDIT ***/var galaxy = require("../generators-fast/runtime");(function(){})();galaxy.unstar(function*(_) { /**
* Copyright (c) 2012 Bruno Jouhier <[email protected]>
* MIT License
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/generators-fast/flows.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Generated by streamline 0.10.17 (generators-fast) - DO NOT EDIT ***/var galaxy = require("../generators-fast/runtime");(function(){})();galaxy.unstar(function*(_) { /**
/*** Generated by streamline 0.12.0 (generators-fast) - DO NOT EDIT ***/var galaxy = require("../generators-fast/runtime");(function(){})();galaxy.unstar(function*(_) { /**
* Copyright (c) 2011 Bruno Jouhier <[email protected]>
*
* Permission is hereby granted, free of charge, to any person
Expand Down
2 changes: 1 addition & 1 deletion lib/generators/builtins.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Generated by streamline 0.10.17 (generators) - DO NOT EDIT ***/var galaxy = require("../generators/runtime");(function(){})();(galaxy.unstar(function*(_) { /**
/*** Generated by streamline 0.12.0 (generators) - DO NOT EDIT ***/var galaxy = require("../generators/runtime");(function(){})();(galaxy.unstar(function*(_) { /**
* Copyright (c) 2012 Bruno Jouhier <[email protected]>
* MIT License
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/generators/flows.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Generated by streamline 0.10.17 (generators) - DO NOT EDIT ***/var galaxy = require("../generators/runtime");(function(){})();(galaxy.unstar(function*(_) { /**
/*** Generated by streamline 0.12.0 (generators) - DO NOT EDIT ***/var galaxy = require("../generators/runtime");(function(){})();(galaxy.unstar(function*(_) { /**
* Copyright (c) 2011 Bruno Jouhier <[email protected]>
*
* Permission is hereby granted, free of charge, to any person
Expand Down
Loading

0 comments on commit dfc2a9f

Please sign in to comment.