Skip to content

Commit

Permalink
http: destructure primordials in lib/_http_server.js
Browse files Browse the repository at this point in the history
PR-URL: #30315
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
  • Loading branch information
artmaks authored and MylesBorins committed Dec 17, 2019
1 parent a621ab8 commit fdfcf68
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions lib/_http_server.js
Expand Up @@ -21,7 +21,12 @@


'use strict'; 'use strict';


const { Object } = primordials; const {
Object: {
setPrototypeOf: ObjectSetPrototypeOf,
keys: ObjectKeys,
}
} = primordials;


const net = require('net'); const net = require('net');
const assert = require('internal/assert'); const assert = require('internal/assert');
Expand Down Expand Up @@ -165,8 +170,8 @@ function ServerResponse(req) {
}; };
} }
} }
Object.setPrototypeOf(ServerResponse.prototype, OutgoingMessage.prototype); ObjectSetPrototypeOf(ServerResponse.prototype, OutgoingMessage.prototype);
Object.setPrototypeOf(ServerResponse, OutgoingMessage); ObjectSetPrototypeOf(ServerResponse, OutgoingMessage);


ServerResponse.prototype._finish = function _finish() { ServerResponse.prototype._finish = function _finish() {
DTRACE_HTTP_SERVER_RESPONSE(this.connection); DTRACE_HTTP_SERVER_RESPONSE(this.connection);
Expand Down Expand Up @@ -258,8 +263,8 @@ function writeHead(statusCode, reason, obj) {
// Slow-case: when progressive API and header fields are passed. // Slow-case: when progressive API and header fields are passed.
let k; let k;
if (obj) { if (obj) {
const keys = Object.keys(obj); const keys = ObjectKeys(obj);
for (let i = 0; i < keys.length; i++) { for (var i = 0; i < keys.length; i++) {
k = keys[i]; k = keys[i];
if (k) this.setHeader(k, obj[k]); if (k) this.setHeader(k, obj[k]);
} }
Expand Down Expand Up @@ -341,8 +346,8 @@ function Server(options, requestListener) {
this.maxHeadersCount = null; this.maxHeadersCount = null;
this.headersTimeout = 40 * 1000; // 40 seconds this.headersTimeout = 40 * 1000; // 40 seconds
} }
Object.setPrototypeOf(Server.prototype, net.Server.prototype); ObjectSetPrototypeOf(Server.prototype, net.Server.prototype);
Object.setPrototypeOf(Server, net.Server); ObjectSetPrototypeOf(Server, net.Server);




Server.prototype.setTimeout = function setTimeout(msecs, callback) { Server.prototype.setTimeout = function setTimeout(msecs, callback) {
Expand Down

0 comments on commit fdfcf68

Please sign in to comment.