mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
c2b8b30836
Commit 3e1b1dd
("Remove excessive copyright/license boilerplate") left
in a few lines of boilerplate here and there. This commit removes them.
PR-URL: https://github.com/nodejs/io.js/pull/1793
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
34 lines
717 B
JavaScript
34 lines
717 B
JavaScript
'use strict';
|
|
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
var spawn = require('child_process').spawn;
|
|
|
|
function run(cmd, strict, cb) {
|
|
var args = [];
|
|
if (strict) args.push('--use_strict');
|
|
args.push('-pe', cmd);
|
|
var child = spawn(process.execPath, args);
|
|
child.stdout.pipe(process.stdout);
|
|
child.stderr.pipe(process.stdout);
|
|
child.on('close', cb);
|
|
}
|
|
|
|
var queue =
|
|
[ 'with(this){__filename}',
|
|
'42',
|
|
'throw new Error("hello")',
|
|
'var x = 100; y = x;',
|
|
'var ______________________________________________; throw 10' ];
|
|
|
|
function go() {
|
|
var c = queue.shift();
|
|
if (!c) return console.log('done');
|
|
run(c, false, function() {
|
|
run(c, true, go);
|
|
});
|
|
}
|
|
|
|
go();
|