lib,test: fix whitespace issues
authorRoman Reiss <me@silverwind.io>
Sat, 13 Jun 2015 17:47:14 +0000 (19:47 +0200)
committerRoman Reiss <me@silverwind.io>
Mon, 15 Jun 2015 14:37:37 +0000 (16:37 +0200)
PR-URL: https://github.com/nodejs/io.js/pull/1971
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
40 files changed:
lib/_debugger.js
lib/_http_server.js
lib/_stream_readable.js
lib/crypto.js
lib/fs.js
lib/net.js
lib/readline.js
lib/stream.js
lib/tty.js
lib/zlib.js
test/internet/test-net-connect-timeout.js
test/parallel/test-buffer-inspect.js
test/parallel/test-buffer.js
test/parallel/test-child-process-double-pipe.js
test/parallel/test-child-process-exit-code.js
test/parallel/test-domain.js
test/parallel/test-event-emitter-num-args.js
test/parallel/test-fs-read-stream-resume.js
test/parallel/test-http-expect-continue.js
test/parallel/test-https-strict.js
test/parallel/test-module-nodemodulepaths.js
test/parallel/test-require-dot.js
test/parallel/test-require-extensions-main.js
test/parallel/test-smalloc.js
test/parallel/test-stream-unshift-empty-chunk.js
test/parallel/test-stream2-readable-from-list.js
test/parallel/test-stringbytes-external.js
test/parallel/test-url.js
test/parallel/test-vm-new-script-new-context.js
test/parallel/test-zlib-random-byte-pipes.js
test/parallel/test-zlib.js
test/pummel/test-exec.js
test/pummel/test-net-throttle.js
test/pummel/test-regress-GH-814.js
test/pummel/test-regress-GH-814_2.js
test/pummel/test-stream2-basic.js
test/sequential/test-pipe.js
test/sequential/test-regress-GH-3542.js
test/sequential/test-regress-GH-4948.js
test/sequential/test-regress-GH-784.js

index 831cc08..ed71c66 100644 (file)
@@ -641,10 +641,6 @@ Client.prototype.fullTrace = function(cb) {
 };
 
 
-
-
-
-
 const commands = [
   [
     'run (r)',
index 2d503f8..b696b9b 100644 (file)
@@ -98,7 +98,6 @@ ServerResponse.prototype._finish = function() {
 };
 
 
-
 exports.ServerResponse = ServerResponse;
 
 ServerResponse.prototype.statusCode = 200;
index 709a445..7be7723 100644 (file)
@@ -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;
 
index 510e8bf..6306eee 100644 (file)
@@ -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,
index 12a3ff0..58704e5 100644 (file)
--- a/lib/fs.js
+++ b/lib/fs.js
@@ -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);
 };
index c5e1997..d4a40fe 100644 (file)
@@ -1004,7 +1004,6 @@ Socket.prototype.unref = function() {
 };
 
 
-
 function afterConnect(status, handle, req, readable, writable) {
   var self = handle.owner;
 
index 7a5758a..b984aac 100644 (file)
@@ -889,7 +889,6 @@ Interface.prototype._ttyWrite = function(s, key) {
 exports.Interface = Interface;
 
 
-
 /**
  * accepts a readable Stream instance and makes it emit "keypress" events
  */
index dd381d9..8d3535d 100644 (file)
@@ -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.
 
index 1241d52..acab1b5 100644 (file)
@@ -49,7 +49,6 @@ ReadStream.prototype.setRawMode = function(flag) {
 };
 
 
-
 function WriteStream(fd) {
   if (!(this instanceof WriteStream)) return new WriteStream(fd);
   net.Socket.call(this, {
index ebb0377..2d37b72 100644 (file)
@@ -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);
index d122229..60c2837 100644 (file)
@@ -62,9 +62,6 @@ socket1.on('connect', function() {
 });
 
 
-
-
-
 process.on('exit', function() {
   assert.ok(gotTimeout0);
   assert.ok(!gotConnect0);
index 707f778..35da378 100644 (file)
@@ -35,4 +35,4 @@ buffer.INSPECT_MAX_BYTES = Infinity;
 assert.doesNotThrow(function() {
   assert.strictEqual(util.inspect(b), expected);
   assert.strictEqual(util.inspect(s), expected);
-});
\ No newline at end of file
+});
index d5af93a..502dcf4 100644 (file)
@@ -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);
index 17b0579..41f49bb 100644 (file)
@@ -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
index feb2fe2..0ccbb46 100644 (file)
@@ -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]);
index 9cca051..cca0157 100644 (file)
@@ -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;
 
index 522fb2e..6c403cd 100644 (file)
@@ -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);
 });
-
-
index 9a2e2ee..abac068 100644 (file)
@@ -18,7 +18,7 @@ stream.on('data', function(chunk) {
     stream.resume();
   }
 });
-  
+
 process.nextTick(function() {
   stream.pause();
   setTimeout(function() {
index aef4a98..1a1418a 100644 (file)
@@ -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,
index 7ab5c3e..46d65ae 100644 (file)
@@ -79,7 +79,6 @@ var responseCount = 0;
 var pending = 0;
 
 
-
 function server(options, port) {
   var s = https.createServer(options, handler);
   s.requests = [];
index b1f04d4..a1a7030 100644 (file)
@@ -19,4 +19,4 @@ if (isWindows) {
 paths = module._nodeModulePaths(file);
 
 assert.ok(paths.indexOf(file + delimiter + 'node_modules') !== -1);
-assert.ok(Array.isArray(paths));
\ No newline at end of file
+assert.ok(Array.isArray(paths));
index aab466e..2fb1614 100644 (file)
@@ -14,4 +14,4 @@ module._initPaths();
 
 var c = require('.');
 
-assert.equal(c.value, 42, 'require(".") should honor NODE_PATH');
\ No newline at end of file
+assert.equal(c.value, 42, 'require(".") should honor NODE_PATH');
index 6e67d3a..198fa6a 100644 (file)
@@ -2,4 +2,4 @@
 var common = require('../common');
 var assert = require('assert');
 
-require(common.fixturesDir + '/require-bin/bin/req.js');
\ No newline at end of file
+require(common.fixturesDir + '/require-bin/bin/req.js');
index ce4e4f4..68d2c23 100644 (file)
@@ -155,7 +155,6 @@ assert.equal(b[0], 0xff);
 assert.equal(b[1], 0xff);
 
 
-
 // verify checking external if has external memory
 
 // check objects
index e6c4272..a7dcad4 100644 (file)
@@ -2,7 +2,7 @@
 var common = require('../common');
 var assert = require('assert');
 
-// This test verifies that stream.unshift(Buffer(0)) or 
+// This test verifies that stream.unshift(Buffer(0)) or
 // stream.unshift('') does not set state.reading=false.
 var Readable = require('stream').Readable;
 
index f142c49..a8d9fb3 100644 (file)
@@ -38,7 +38,6 @@ process.on('exit', function() {
 process.nextTick(run);
 
 
-
 test('buffers', function(t) {
   // have a length
   var len = 16;
index 4453580..107685b 100644 (file)
@@ -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;
index 4e3251a..a6eeca1 100644 (file)
@@ -1562,7 +1562,6 @@ relativeTests2.forEach(function(relativeTest) {
 });
 
 
-
 // https://github.com/nodejs/io.js/pull/1036
 var throws = [
   undefined,
index 4619c93..e3cc6e9 100644 (file)
@@ -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);
-
-
index fcdc814..0f34f7a 100644 (file)
@@ -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();
index aaa965c..b3f193d 100644 (file)
@@ -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.
index 41d8142..4013e21 100644 (file)
@@ -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);
 
index d556d8a..54956b7 100644 (file)
@@ -55,7 +55,6 @@ server.listen(common.PORT, function() {
 });
 
 
-
 process.on('exit', function() {
   assert.equal(N, chars_recved);
   assert.equal(true, npauses > 2);
index 0059af1..4ed4b31 100644 (file)
@@ -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;
   }
 }
-
-
index 6dd2f2d..9de1a2c 100644 (file)
@@ -70,8 +70,6 @@ function writerCB(err, written) {
 }
 
 
-
-
 // ******************* UTILITIES
 
 
index c83d80c..fe921dc 100644 (file)
@@ -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);
index 2ef19c3..c311a64 100644 (file)
@@ -51,7 +51,6 @@ var web = http.Server(function(req, res) {
 web.listen(webPort, startClient);
 
 
-
 var tcp = net.Server(function(s) {
   tcp.close();
 
index 80f2a4c..16981da 100644 (file)
@@ -31,4 +31,4 @@ test(process.env.windir);
 
 process.on('exit', function() {
   assert.strictEqual(succeeded, 7);
-});
\ No newline at end of file
+});
index c87ade9..c6953eb 100644 (file)
@@ -40,4 +40,4 @@ sock.connect(common.PORT, 'localhost');
 sock.on('connect', function() {
   sock.write('GET / HTTP/1.1\r\n\r\n');
   sock.end();
-});
\ No newline at end of file
+});
index 08f660a..0c70337 100644 (file)
@@ -117,18 +117,13 @@ function ping() {
 }
 
 
-
 function pingping() {
   ping();
   ping();
 }
 
-
 pingping();
 
-
-
-
 process.on('exit', function() {
   console.error("process.on('exit')");
   console.error(responses);