flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
38
VISUALIZACION/node_modules/falafel/test/inspect.js
generated
vendored
Executable file
38
VISUALIZACION/node_modules/falafel/test/inspect.js
generated
vendored
Executable file
|
|
@ -0,0 +1,38 @@
|
|||
var falafel = require('../');
|
||||
var test = require('tape');
|
||||
var util = require('util');
|
||||
|
||||
test('inspect', function (t) {
|
||||
t.plan(7);
|
||||
|
||||
var src = '(function () {'
|
||||
+ 'var xs = [ 1, 2, [ 3, 4 ] ];'
|
||||
+ 'var ys = [ 5, 6 ];'
|
||||
+ 'g([ xs, ys ]);'
|
||||
+ '})()';
|
||||
|
||||
var output = falafel(src, function (node) {
|
||||
if (node.type === 'ArrayExpression') {
|
||||
node.update('fn(' + node.source() + ')');
|
||||
}
|
||||
});
|
||||
t.equal(output.inspect(), output.toString());
|
||||
t.equal(util.inspect(output), output.toString());
|
||||
|
||||
var arrays = [
|
||||
[ 3, 4 ],
|
||||
[ 1, 2, [ 3, 4 ] ],
|
||||
[ 5, 6 ],
|
||||
[ [ 1, 2, [ 3, 4 ] ], [ 5, 6 ] ],
|
||||
];
|
||||
|
||||
Function(['fn','g'], output)(
|
||||
function (xs) {
|
||||
t.same(arrays.shift(), xs);
|
||||
return xs;
|
||||
},
|
||||
function (xs) {
|
||||
t.same(xs, [ [ 1, 2, [ 3, 4 ] ], [ 5, 6 ] ]);
|
||||
}
|
||||
);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue