This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*** Generated by streamline 0.1.22 - DO NOT EDIT ***/ | |
var __global = typeof global !== 'undefined' ? global : window; | |
function __cb(_, fn) { var ctx = __global.__context; return function(err, result) { __global.__context = ctx; if (err) return _(err); try { return fn(null, result); } catch (ex) { return __propagate(_, ex); } } } | |
function __future(fn, args, i) { var done, err, result; var cb = function(e, r) { done = true; err = e, result = r; }; args = Array.prototype.slice.call(args); args[i] = function(e, r) { cb(e, r); }; fn.apply(this, args); return function(_) { if (done) _.call(this, err, result); else cb = _.bind(this); }.bind(this); } | |
function __propagate(_, err) { try { _(err); } catch (ex) { __trap(ex); } } | |
function __trap(err) { if (err) { if (__global.__context && __global.__context.errorHandler) __global.__context.errorHandler(err); else console.error("UNCAUGHT EXCEPTION: " + err.message + "\n" + err.stack); } } | |
(function(_) { | |
var __then = (_ = (_ || __trap)); | |
/* 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var streams = require("streamline/lib/streams/streams"); | |
var flows = require("streamline/lib/util/flows"); | |
var port = 3001; | |
// if you remove last element, test will pass! | |
var values = [1,2,3,4,5]; | |
function send(_, path, val){ | |
return streams.httpRequest({ | |
method: "put", | |
url: "http://localhost:" + port + path |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*** Generated by streamline 0.1.35 - DO NOT EDIT ***/ | |
var __global = typeof global !== 'undefined' ? global : window; | |
function __cb(_, fn){ var ctx = __global.__context; return function(err, result){ __global.__context = ctx; if (err) return _(err); try { return fn(null, result); } catch (ex) { return __propagate(_, ex); } } } | |
function __future(fn, args, i){ var done, err, result; var cb = function(e, r){ done = true; err = e, result = r; }; args = Array.prototype.slice.call(args); args[i] = function(e, r){ cb(e, r); }; fn.apply(this, args); return function(_){ if (done) _.call(this, err, result); else cb = _.bind(this); } .bind(this); } | |
function __nt(_, fn){ var i = 0; var cb = __cb(_, fn); var safeCb = function(){ try { cb(); } catch (ex) { __propagate(cb, ex); } }; if (typeof process != "undefined" && typeof process.nextTick == "function") return function(){ if (++i % 20 == 0) process.nextTick(safeCb); else cb(); }; else return function(){ if (++i % 20 == 0) setTimeout(safeCb); else cb(); }; } | |
function _ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
var JSURL = require("jsurl"); | |
function bench(name, count, fn) { | |
var t0 = Date.now(); | |
for (var i = 0; i < count; i++) | |
fn(); | |
console.log(name + ": " + (Date.now() - t0)); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
if (!require('streamline/module')(module)) return; | |
function foo(_, i) { | |
return 2 * i; | |
} | |
function bar(_, f, i) { | |
return f.call(null, _, i); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// callback wrapper for trampoline | |
var depth = 0; | |
var maxDepth = 100; | |
var marker = {}; | |
function trampo(cb) { | |
return function(e, r) { | |
var d = depth++; | |
try { | |
if (depth === maxDepth) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node-streamline | |
"use strict"; | |
require('coffee-script') | |
var test = require("ace/src/lib/ace"); | |
test(1, function(_) { | |
function Foo(x, _) { | |
process.nextTick(_); | |
this.x = x; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
if (!require('streamline/module')(module)) return; | |
var fs = require('fs'); | |
var streams = require('streamline/lib/streams/server/streams'); | |
// cat ins > out | |
exports.chomp = function(ins, out, _) { | |
streams.usingWritable(_, fs.createWriteStream(out), function(_, outStream) { | |
for (var i = 0; i < ins.length; i++) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function bench(name, fn) { | |
var result; | |
// 2 passes to let V8 optimize | |
for (var pass = 2; pass >= 0; pass--) { | |
var count = 1; | |
while (true) { | |
var t0 = Date.now(); | |
fn(count); | |
dt = (Date.now() - t0); | |
if (dt > 100) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (!require('streamline/module')(module)) return; | |
function fibo(_, n) { | |
return n > 1 ? fibo(_, n - 1) + fibo(_, n - 2) : 1; | |
} | |
function fibo2(_, n) { | |
return n > 1 ? trampo(this, 0, fibo2, _, n - 1) + trampo(this, 0, fibo2, _, n - 2) : 1; | |
} |
OlderNewer