Skip to content

Commit fb8811d

Browse files
committed
lib,test: fix whitespace issues
PR-URL: #1971 Reviewed-By: Ben Noordhuis <[email protected]>
1 parent 8d8a26e commit fb8811d

40 files changed

+8
-79
lines changed

lib/_debugger.js

-4
Original file line numberDiff line numberDiff line change
@@ -641,10 +641,6 @@ Client.prototype.fullTrace = function(cb) {
641641
};
642642

643643

644-
645-
646-
647-
648644
const commands = [
649645
[
650646
'run (r)',

lib/_http_server.js

-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ ServerResponse.prototype._finish = function() {
9898
};
9999

100100

101-
102101
exports.ServerResponse = ServerResponse;
103102

104103
ServerResponse.prototype.statusCode = 200;

lib/_stream_readable.js

-3
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,6 @@ function readableAddChunk(stream, state, chunk, encoding, addToFront) {
167167
}
168168

169169

170-
171170
// if it's past the high water mark, we can push in some more.
172171
// Also, if we have no data yet, we can stand some
173172
// more bytes. This is to work around cases where hwm=0,
@@ -547,7 +546,6 @@ Readable.prototype.pipe = function(dest, pipeOpts) {
547546
dest._events.error = [onerror, dest._events.error];
548547

549548

550-
551549
// Both close and finish should trigger unpipe, but only once.
552550
function onclose() {
553551
dest.removeListener('finish', onfinish);
@@ -800,7 +798,6 @@ Readable.prototype.wrap = function(stream) {
800798
};
801799

802800

803-
804801
// exposed for testing purposes only.
805802
Readable._fromList = fromList;
806803

lib/crypto.js

-3
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,6 @@ Decipheriv.prototype.setAuthTag = Cipher.prototype.setAuthTag;
280280
Decipheriv.prototype.setAAD = Cipher.prototype.setAAD;
281281

282282

283-
284283
exports.createSign = exports.Sign = Sign;
285284
function Sign(algorithm, options) {
286285
if (!(this instanceof Sign))
@@ -316,7 +315,6 @@ Sign.prototype.sign = function(options, encoding) {
316315
};
317316

318317

319-
320318
exports.createVerify = exports.Verify = Verify;
321319
function Verify(algorithm, options) {
322320
if (!(this instanceof Verify))
@@ -562,7 +560,6 @@ ECDH.prototype.getPublicKey = function getPublicKey(encoding, format) {
562560
};
563561

564562

565-
566563
exports.pbkdf2 = function(password,
567564
salt,
568565
iterations,

lib/fs.js

-4
Original file line numberDiff line numberDiff line change
@@ -1596,7 +1596,6 @@ fs.realpath = function realpath(p, cache, cb) {
15961596
};
15971597

15981598

1599-
16001599
var pool;
16011600

16021601
function allocNewPool(poolSize) {
@@ -1605,7 +1604,6 @@ function allocNewPool(poolSize) {
16051604
}
16061605

16071606

1608-
16091607
fs.createReadStream = function(path, options) {
16101608
return new ReadStream(path, options);
16111609
};
@@ -1778,8 +1776,6 @@ ReadStream.prototype.close = function(cb) {
17781776
};
17791777

17801778

1781-
1782-
17831779
fs.createWriteStream = function(path, options) {
17841780
return new WriteStream(path, options);
17851781
};

lib/net.js

-1
Original file line numberDiff line numberDiff line change
@@ -1004,7 +1004,6 @@ Socket.prototype.unref = function() {
10041004
};
10051005

10061006

1007-
10081007
function afterConnect(status, handle, req, readable, writable) {
10091008
var self = handle.owner;
10101009

lib/readline.js

-1
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,6 @@ Interface.prototype._ttyWrite = function(s, key) {
889889
exports.Interface = Interface;
890890

891891

892-
893892
/**
894893
* accepts a readable Stream instance and makes it emit "keypress" events
895894
*/

lib/stream.js

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ Stream.PassThrough = require('_stream_passthrough');
1616
Stream.Stream = Stream;
1717

1818

19-
2019
// old-style streams. Note that the pipe method (the only relevant
2120
// part of this class) is overridden in the Readable class.
2221

lib/tty.js

-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ ReadStream.prototype.setRawMode = function(flag) {
4949
};
5050

5151

52-
5352
function WriteStream(fd) {
5453
if (!(this instanceof WriteStream)) return new WriteStream(fd);
5554
net.Socket.call(this, {

lib/zlib.js

-2
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,6 @@ function Inflate(opts) {
241241
}
242242

243243

244-
245244
// gzip - bigger header, same deflate compression
246245
function Gzip(opts) {
247246
if (!(this instanceof Gzip)) return new Gzip(opts);
@@ -254,7 +253,6 @@ function Gunzip(opts) {
254253
}
255254

256255

257-
258256
// raw - no header
259257
function DeflateRaw(opts) {
260258
if (!(this instanceof DeflateRaw)) return new DeflateRaw(opts);

test/internet/test-net-connect-timeout.js

-3
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,6 @@ socket1.on('connect', function() {
6262
});
6363

6464

65-
66-
67-
6865
process.on('exit', function() {
6966
assert.ok(gotTimeout0);
7067
assert.ok(!gotConnect0);

test/parallel/test-buffer-inspect.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ buffer.INSPECT_MAX_BYTES = Infinity;
3535
assert.doesNotThrow(function() {
3636
assert.strictEqual(util.inspect(b), expected);
3737
assert.strictEqual(util.inspect(s), expected);
38-
});
38+
});

test/parallel/test-buffer.js

-1
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,6 @@ assert.equal(b, c.parent);
314314
assert.equal(b, d.parent);
315315

316316

317-
318317
// Bug regression test
319318
var testValue = '\u00F6\u65E5\u672C\u8A9E'; // ö日本語
320319
var buffer = new Buffer(32);

test/parallel/test-child-process-double-pipe.js

-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ if (is_windows) {
3535
*/
3636

3737

38-
3938
// pipe echo | grep
4039
echo.stdout.on('data', function(data) {
4140
console.error('grep stdin write ' + data.length);
@@ -66,7 +65,6 @@ sed.on('exit', function() {
6665
});
6766

6867

69-
7068
// pipe grep | sed
7169
grep.stdout.on('data', function(data) {
7270
console.error('grep stdout ' + data.length);
@@ -86,7 +84,6 @@ grep.stdout.on('end', function(code) {
8684
});
8785

8886

89-
9087
var result = '';
9188

9289
// print sed's output

test/parallel/test-child-process-exit-code.js

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ exitChild.on('exit', function(code, signal) {
1616
});
1717

1818

19-
2019
var errorScript = path.join(common.fixturesDir,
2120
'child_process_should_emit_error.js');
2221
var errorChild = spawn(process.argv[0], [errorScript]);

test/parallel/test-domain.js

-9
Original file line numberDiff line numberDiff line change
@@ -105,15 +105,13 @@ d.on('error', function(er) {
105105
});
106106

107107

108-
109108
process.on('exit', function() {
110109
console.error('exit', caught, expectCaught);
111110
assert.equal(caught, expectCaught, 'caught the expected number of errors');
112111
console.log('ok');
113112
});
114113

115114

116-
117115
// revert to using the domain when a callback is passed to nextTick in
118116
// the middle of a tickCallback loop
119117
d.run(function() {
@@ -124,7 +122,6 @@ d.run(function() {
124122
expectCaught++;
125123

126124

127-
128125
// catch thrown errors no matter how many times we enter the event loop
129126
// this only uses implicit binding, except for the first function
130127
// passed to d.run(). The rest are implicitly bound by virtue of being
@@ -146,7 +143,6 @@ d.run(function() {
146143
expectCaught++;
147144

148145

149-
150146
// implicit addition of a timer created within a domain-bound context.
151147
d.run(function() {
152148
setTimeout(function() {
@@ -156,14 +152,12 @@ d.run(function() {
156152
expectCaught++;
157153

158154

159-
160155
// Event emitters added to the domain have their errors routed.
161156
d.add(e);
162157
e.emit('error', new Error('emitted'));
163158
expectCaught++;
164159

165160

166-
167161
// get rid of the `if (er) return cb(er)` malarky, by intercepting
168162
// the cb functions to the domain, and using the intercepted function
169163
// as a callback instead.
@@ -177,7 +171,6 @@ bound(new Error('bound'));
177171
expectCaught++;
178172

179173

180-
181174
// intercepted should never pass first argument to callback
182175
function fn2(data) {
183176
assert.equal(data, 'data', 'should not be null err argument');
@@ -208,7 +201,6 @@ setTimeout(d.bind(thrower), 100);
208201
expectCaught++;
209202

210203

211-
212204
// Pass an intercepted function to an fs operation that fails.
213205
fs.open('this file does not exist', 'r', d.intercept(function(er) {
214206
console.error('should not get here!', er);
@@ -217,7 +209,6 @@ fs.open('this file does not exist', 'r', d.intercept(function(er) {
217209
expectCaught++;
218210

219211

220-
221212
// implicit addition by being created within a domain-bound context.
222213
var implicit;
223214

test/parallel/test-event-emitter-num-args.js

-2
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,3 @@ e.emit('numArgs', null, null, null, null, null);
2424
process.on('exit', function() {
2525
assert.deepEqual([0, 1, 2, 3, 4, 5], num_args_emited);
2626
});
27-
28-

test/parallel/test-fs-read-stream-resume.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ stream.on('data', function(chunk) {
1818
stream.resume();
1919
}
2020
});
21-
21+
2222
process.nextTick(function() {
2323
stream.pause();
2424
setTimeout(function() {

test/parallel/test-http-expect-continue.js

-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ server.on('checkContinue', function(req, res) {
3131
server.listen(common.PORT);
3232

3333

34-
3534
server.on('listening', function() {
3635
var req = http.request({
3736
port: common.PORT,

test/parallel/test-https-strict.js

-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ var responseCount = 0;
7979
var pending = 0;
8080

8181

82-
8382
function server(options, port) {
8483
var s = https.createServer(options, handler);
8584
s.requests = [];

test/parallel/test-module-nodemodulepaths.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ if (isWindows) {
1919
paths = module._nodeModulePaths(file);
2020

2121
assert.ok(paths.indexOf(file + delimiter + 'node_modules') !== -1);
22-
assert.ok(Array.isArray(paths));
22+
assert.ok(Array.isArray(paths));

test/parallel/test-require-dot.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ module._initPaths();
1414

1515
var c = require('.');
1616

17-
assert.equal(c.value, 42, 'require(".") should honor NODE_PATH');
17+
assert.equal(c.value, 42, 'require(".") should honor NODE_PATH');

test/parallel/test-require-extensions-main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
var common = require('../common');
33
var assert = require('assert');
44

5-
require(common.fixturesDir + '/require-bin/bin/req.js');
5+
require(common.fixturesDir + '/require-bin/bin/req.js');

test/parallel/test-smalloc.js

-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,6 @@ assert.equal(b[0], 0xff);
155155
assert.equal(b[1], 0xff);
156156

157157

158-
159158
// verify checking external if has external memory
160159

161160
// check objects

test/parallel/test-stream-unshift-empty-chunk.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
var common = require('../common');
33
var assert = require('assert');
44

5-
// This test verifies that stream.unshift(Buffer(0)) or
5+
// This test verifies that stream.unshift(Buffer(0)) or
66
// stream.unshift('') does not set state.reading=false.
77
var Readable = require('stream').Readable;
88

test/parallel/test-stream2-readable-from-list.js

-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ process.on('exit', function() {
3838
process.nextTick(run);
3939

4040

41-
4241
test('buffers', function(t) {
4342
// have a length
4443
var len = 16;

test/parallel/test-stringbytes-external.js

-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ assert.equal(c_bin.toString('binary'), ucs2_control);
4949
assert.equal(c_ucs.toString('binary'), ucs2_control);
5050

5151

52-
5352
// now let's test BASE64 and HEX ecoding/decoding
5453
var RADIOS = 2;
5554
var PRE_HALF_APEX = Math.ceil(EXTERN_APEX / 2) - RADIOS;

test/parallel/test-url.js

-1
Original file line numberDiff line numberDiff line change
@@ -1562,7 +1562,6 @@ relativeTests2.forEach(function(relativeTest) {
15621562
});
15631563

15641564

1565-
15661565
// https://github.com/nodejs/io.js/pull/1036
15671566
var throws = [
15681567
undefined,

test/parallel/test-vm-new-script-new-context.js

-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ assert.throws(function() {
2020
}, /test/);
2121

2222

23-
2423
console.error('undefined reference');
2524
var error;
2625
script = new Script('foo.bar = 5;');
@@ -67,5 +66,3 @@ console.error('invalid this');
6766
assert.throws(function() {
6867
script.runInNewContext.call('\'hello\';');
6968
}, TypeError);
70-
71-

test/parallel/test-zlib-random-byte-pipes.js

-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ var util = require('util');
1414
var zlib = require('zlib');
1515

1616

17-
1817
// emit random bytes, and keep a shasum
1918
function RandomReadStream(opt) {
2019
Stream.call(this);
@@ -130,8 +129,6 @@ HashStream.prototype.end = function(c) {
130129
};
131130

132131

133-
134-
135132
var inp = new RandomReadStream({ total: 1024, block: 256, jitter: 16 });
136133
var out = new HashStream();
137134
var gzip = zlib.createGzip();

test/parallel/test-zlib.js

-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,6 @@ SlowStream.prototype.end = function(chunk) {
133133
};
134134

135135

136-
137136
// for each of the files, make sure that compressing and
138137
// decompressing results in the same data, for every combination
139138
// of the options set above.

0 commit comments

Comments
 (0)