lib,test: fix whitespace issues

PR-URL: https://github.com/nodejs/io.js/pull/1971
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
This commit is contained in:
Roman Reiss 2015-06-13 19:47:14 +02:00
Родитель 8d8a26e8f7
Коммит fb8811d95e
40 изменённых файлов: 8 добавлений и 79 удалений

Просмотреть файл

@ -641,10 +641,6 @@ Client.prototype.fullTrace = function(cb) {
};
const commands = [
[
'run (r)',

Просмотреть файл

@ -98,7 +98,6 @@ ServerResponse.prototype._finish = function() {
};
exports.ServerResponse = ServerResponse;
ServerResponse.prototype.statusCode = 200;

Просмотреть файл

@ -167,7 +167,6 @@ function readableAddChunk(stream, state, chunk, encoding, addToFront) {
}
// if it's past the high water mark, we can push in some more.
// Also, if we have no data yet, we can stand some
// more bytes. This is to work around cases where hwm=0,
@ -547,7 +546,6 @@ Readable.prototype.pipe = function(dest, pipeOpts) {
dest._events.error = [onerror, dest._events.error];
// Both close and finish should trigger unpipe, but only once.
function onclose() {
dest.removeListener('finish', onfinish);
@ -800,7 +798,6 @@ Readable.prototype.wrap = function(stream) {
};
// exposed for testing purposes only.
Readable._fromList = fromList;

Просмотреть файл

@ -280,7 +280,6 @@ Decipheriv.prototype.setAuthTag = Cipher.prototype.setAuthTag;
Decipheriv.prototype.setAAD = Cipher.prototype.setAAD;
exports.createSign = exports.Sign = Sign;
function Sign(algorithm, options) {
if (!(this instanceof Sign))
@ -316,7 +315,6 @@ Sign.prototype.sign = function(options, encoding) {
};
exports.createVerify = exports.Verify = Verify;
function Verify(algorithm, options) {
if (!(this instanceof Verify))
@ -562,7 +560,6 @@ ECDH.prototype.getPublicKey = function getPublicKey(encoding, format) {
};
exports.pbkdf2 = function(password,
salt,
iterations,

Просмотреть файл

@ -1596,7 +1596,6 @@ fs.realpath = function realpath(p, cache, cb) {
};
var pool;
function allocNewPool(poolSize) {
@ -1605,7 +1604,6 @@ function allocNewPool(poolSize) {
}
fs.createReadStream = function(path, options) {
return new ReadStream(path, options);
};
@ -1778,8 +1776,6 @@ ReadStream.prototype.close = function(cb) {
};
fs.createWriteStream = function(path, options) {
return new WriteStream(path, options);
};

Просмотреть файл

@ -1004,7 +1004,6 @@ Socket.prototype.unref = function() {
};
function afterConnect(status, handle, req, readable, writable) {
var self = handle.owner;

Просмотреть файл

@ -889,7 +889,6 @@ Interface.prototype._ttyWrite = function(s, key) {
exports.Interface = Interface;
/**
* accepts a readable Stream instance and makes it emit "keypress" events
*/

Просмотреть файл

@ -16,7 +16,6 @@ Stream.PassThrough = require('_stream_passthrough');
Stream.Stream = Stream;
// old-style streams. Note that the pipe method (the only relevant
// part of this class) is overridden in the Readable class.

Просмотреть файл

@ -49,7 +49,6 @@ ReadStream.prototype.setRawMode = function(flag) {
};
function WriteStream(fd) {
if (!(this instanceof WriteStream)) return new WriteStream(fd);
net.Socket.call(this, {

Просмотреть файл

@ -241,7 +241,6 @@ function Inflate(opts) {
}
// gzip - bigger header, same deflate compression
function Gzip(opts) {
if (!(this instanceof Gzip)) return new Gzip(opts);
@ -254,7 +253,6 @@ function Gunzip(opts) {
}
// raw - no header
function DeflateRaw(opts) {
if (!(this instanceof DeflateRaw)) return new DeflateRaw(opts);

Просмотреть файл

@ -62,9 +62,6 @@ socket1.on('connect', function() {
});
process.on('exit', function() {
assert.ok(gotTimeout0);
assert.ok(!gotConnect0);

Просмотреть файл

@ -314,7 +314,6 @@ assert.equal(b, c.parent);
assert.equal(b, d.parent);
// Bug regression test
var testValue = '\u00F6\u65E5\u672C\u8A9E'; // ö日本語
var buffer = new Buffer(32);

Просмотреть файл

@ -35,7 +35,6 @@ if (is_windows) {
*/
// pipe echo | grep
echo.stdout.on('data', function(data) {
console.error('grep stdin write ' + data.length);
@ -66,7 +65,6 @@ sed.on('exit', function() {
});
// pipe grep | sed
grep.stdout.on('data', function(data) {
console.error('grep stdout ' + data.length);
@ -86,7 +84,6 @@ grep.stdout.on('end', function(code) {
});
var result = '';
// print sed's output

Просмотреть файл

@ -16,7 +16,6 @@ exitChild.on('exit', function(code, signal) {
});
var errorScript = path.join(common.fixturesDir,
'child_process_should_emit_error.js');
var errorChild = spawn(process.argv[0], [errorScript]);

Просмотреть файл

@ -105,7 +105,6 @@ d.on('error', function(er) {
});
process.on('exit', function() {
console.error('exit', caught, expectCaught);
assert.equal(caught, expectCaught, 'caught the expected number of errors');
@ -113,7 +112,6 @@ process.on('exit', function() {
});
// revert to using the domain when a callback is passed to nextTick in
// the middle of a tickCallback loop
d.run(function() {
@ -124,7 +122,6 @@ d.run(function() {
expectCaught++;
// catch thrown errors no matter how many times we enter the event loop
// this only uses implicit binding, except for the first function
// passed to d.run(). The rest are implicitly bound by virtue of being
@ -146,7 +143,6 @@ d.run(function() {
expectCaught++;
// implicit addition of a timer created within a domain-bound context.
d.run(function() {
setTimeout(function() {
@ -156,14 +152,12 @@ d.run(function() {
expectCaught++;
// Event emitters added to the domain have their errors routed.
d.add(e);
e.emit('error', new Error('emitted'));
expectCaught++;
// get rid of the `if (er) return cb(er)` malarky, by intercepting
// the cb functions to the domain, and using the intercepted function
// as a callback instead.
@ -177,7 +171,6 @@ bound(new Error('bound'));
expectCaught++;
// intercepted should never pass first argument to callback
function fn2(data) {
assert.equal(data, 'data', 'should not be null err argument');
@ -208,7 +201,6 @@ setTimeout(d.bind(thrower), 100);
expectCaught++;
// Pass an intercepted function to an fs operation that fails.
fs.open('this file does not exist', 'r', d.intercept(function(er) {
console.error('should not get here!', er);
@ -217,7 +209,6 @@ fs.open('this file does not exist', 'r', d.intercept(function(er) {
expectCaught++;
// implicit addition by being created within a domain-bound context.
var implicit;

Просмотреть файл

@ -24,5 +24,3 @@ e.emit('numArgs', null, null, null, null, null);
process.on('exit', function() {
assert.deepEqual([0, 1, 2, 3, 4, 5], num_args_emited);
});

Просмотреть файл

@ -31,7 +31,6 @@ server.on('checkContinue', function(req, res) {
server.listen(common.PORT);
server.on('listening', function() {
var req = http.request({
port: common.PORT,

Просмотреть файл

@ -79,7 +79,6 @@ var responseCount = 0;
var pending = 0;
function server(options, port) {
var s = https.createServer(options, handler);
s.requests = [];

Просмотреть файл

@ -155,7 +155,6 @@ assert.equal(b[0], 0xff);
assert.equal(b[1], 0xff);
// verify checking external if has external memory
// check objects

Просмотреть файл

@ -38,7 +38,6 @@ process.on('exit', function() {
process.nextTick(run);
test('buffers', function(t) {
// have a length
var len = 16;

Просмотреть файл

@ -49,7 +49,6 @@ assert.equal(c_bin.toString('binary'), ucs2_control);
assert.equal(c_ucs.toString('binary'), ucs2_control);
// now let's test BASE64 and HEX ecoding/decoding
var RADIOS = 2;
var PRE_HALF_APEX = Math.ceil(EXTERN_APEX / 2) - RADIOS;

Просмотреть файл

@ -1562,7 +1562,6 @@ relativeTests2.forEach(function(relativeTest) {
});
// https://github.com/nodejs/io.js/pull/1036
var throws = [
undefined,

Просмотреть файл

@ -20,7 +20,6 @@ assert.throws(function() {
}, /test/);
console.error('undefined reference');
var error;
script = new Script('foo.bar = 5;');
@ -67,5 +66,3 @@ console.error('invalid this');
assert.throws(function() {
script.runInNewContext.call('\'hello\';');
}, TypeError);

Просмотреть файл

@ -14,7 +14,6 @@ var util = require('util');
var zlib = require('zlib');
// emit random bytes, and keep a shasum
function RandomReadStream(opt) {
Stream.call(this);
@ -130,8 +129,6 @@ HashStream.prototype.end = function(c) {
};
var inp = new RandomReadStream({ total: 1024, block: 256, jitter: 16 });
var out = new HashStream();
var gzip = zlib.createGzip();

Просмотреть файл

@ -133,7 +133,6 @@ SlowStream.prototype.end = function(chunk) {
};
// for each of the files, make sure that compressing and
// decompressing results in the same data, for every combination
// of the options set above.

Просмотреть файл

@ -50,7 +50,6 @@ exec('thisisnotavalidcommand', function(err, stdout, stderr) {
});
var sleeperStart = new Date();
exec(SLEEP3_COMMAND, { timeout: 50 }, function(err, stdout, stderr) {
var diff = (new Date()) - sleeperStart;
@ -62,8 +61,6 @@ exec(SLEEP3_COMMAND, { timeout: 50 }, function(err, stdout, stderr) {
});
var startSleep3 = new Date();
var killMeTwice = exec(SLEEP3_COMMAND, {timeout: 1000}, killMeTwiceCallback);

Просмотреть файл

@ -55,7 +55,6 @@ server.listen(common.PORT, function() {
});
process.on('exit', function() {
assert.equal(N, chars_recved);
assert.equal(true, npauses > 2);

Просмотреть файл

@ -19,14 +19,12 @@ var testFileFD = fs.openSync(testFileName, 'w');
console.log(testFileName);
var kBufSize = 128 * 1024;
var PASS = true;
var neverWrittenBuffer = newBuffer(kBufSize, 0x2e); //0x2e === '.'
var bufPool = [];
var tail = require('child_process').spawn('tail', ['-f', testFileName]);
tail.stdout.on('data', tailCB);
@ -35,7 +33,6 @@ function tailCB(data) {
}
var timeToQuit = Date.now() + 8e3; //Test during no more than this seconds.
(function main() {
@ -68,5 +65,3 @@ function cb(err, written) {
throw err;
}
}

Просмотреть файл

@ -70,8 +70,6 @@ function writerCB(err, written) {
}
// ******************* UTILITIES

Просмотреть файл

@ -168,7 +168,6 @@ test('pipe', function(t) {
});
[1, 2, 3, 4, 5, 6, 7, 8, 9].forEach(function(SPLIT) {
test('unpipe', function(t) {
var r = new TestReader(5);

Просмотреть файл

@ -51,7 +51,6 @@ var web = http.Server(function(req, res) {
web.listen(webPort, startClient);
var tcp = net.Server(function(s) {
tcp.close();

Просмотреть файл

@ -117,18 +117,13 @@ function ping() {
}
function pingping() {
ping();
ping();
}
pingping();
process.on('exit', function() {
console.error("process.on('exit')");
console.error(responses);