diff --git a/lib/_stream_readable.js b/lib/_stream_readable.js index 00b6622b789980..cd61922484d551 100644 --- a/lib/_stream_readable.js +++ b/lib/_stream_readable.js @@ -25,7 +25,7 @@ const { ArrayIsArray, NumberIsInteger, NumberIsNaN, - ObjectDefineProperty, + ObjectDefineProperties, ObjectSetPrototypeOf, SymbolAsyncIterator, Symbol @@ -162,15 +162,6 @@ function ReadableState(options, stream, isDuplex) { } } -// Legacy property for `paused` -ObjectDefineProperty(ReadableState.prototype, 'paused', { - get() { - return this[kPaused] !== false; - }, - set(value) { - this[kPaused] = !!value; - } -}); function Readable(options) { if (!(this instanceof Readable)) @@ -196,40 +187,6 @@ function Readable(options) { Stream.call(this, options); } -ObjectDefineProperty(Readable.prototype, 'destroyed', { - // Making it explicit this property is not enumerable - // because otherwise some prototype manipulation in - // userland will fail - enumerable: false, - get() { - if (this._readableState === undefined) { - return false; - } - return this._readableState.destroyed; - }, - set(value) { - // We ignore the value if the stream - // has not been initialized yet - if (!this._readableState) { - return; - } - - // Backward compatibility, the user is explicitly - // managing destroyed - this._readableState.destroyed = value; - } -}); - -ObjectDefineProperty(Readable.prototype, 'readableEnded', { - // Making it explicit this property is not enumerable - // because otherwise some prototype manipulation in - // userland will fail - enumerable: false, - get() { - return this._readableState ? this._readableState.endEmitted : false; - } -}); - Readable.prototype.destroy = destroyImpl.destroy; Readable.prototype._undestroy = destroyImpl.undestroy; Readable.prototype._destroy = function(err, cb) { @@ -1105,68 +1062,99 @@ Readable.prototype[SymbolAsyncIterator] = function() { return createReadableStreamAsyncIterator(this); }; -ObjectDefineProperty(Readable.prototype, 'readableHighWaterMark', { - // Making it explicit this property is not enumerable - // because otherwise some prototype manipulation in - // userland will fail - enumerable: false, - get: function() { - return this._readableState.highWaterMark; - } -}); +// Making it explicit these properties are not enumerable +// because otherwise some prototype manipulation in +// userland will fail +ObjectDefineProperties(Readable.prototype, { -ObjectDefineProperty(Readable.prototype, 'readableBuffer', { - // Making it explicit this property is not enumerable - // because otherwise some prototype manipulation in - // userland will fail - enumerable: false, - get: function() { - return this._readableState && this._readableState.buffer; - } -}); + readableHighWaterMark: { + enumerable: false, + get: function() { + return this._readableState.highWaterMark; + } + }, -ObjectDefineProperty(Readable.prototype, 'readableFlowing', { - // Making it explicit this property is not enumerable - // because otherwise some prototype manipulation in - // userland will fail - enumerable: false, - get: function() { - return this._readableState.flowing; + readableBuffer: { + enumerable: false, + get: function() { + return this._readableState && this._readableState.buffer; + } }, - set: function(state) { - if (this._readableState) { - this._readableState.flowing = state; + + readableFlowing: { + enumerable: false, + get: function() { + return this._readableState.flowing; + }, + set: function(state) { + if (this._readableState) { + this._readableState.flowing = state; + } } - } -}); + }, -// Exposed for testing purposes only. -Readable._fromList = fromList; + readableLength: { + enumerable: false, + get() { + return this._readableState.length; + } + }, -ObjectDefineProperty(Readable.prototype, 'readableLength', { - // Making it explicit this property is not enumerable - // because otherwise some prototype manipulation in - // userland will fail - enumerable: false, - get() { - return this._readableState.length; - } -}); + readableObjectMode: { + enumerable: false, + get() { + return this._readableState ? this._readableState.objectMode : false; + } + }, -ObjectDefineProperty(Readable.prototype, 'readableObjectMode', { - enumerable: false, - get() { - return this._readableState ? this._readableState.objectMode : false; - } -}); + readableEncoding: { + enumerable: false, + get() { + return this._readableState ? this._readableState.encoding : null; + } + }, + + destroyed: { + enumerable: false, + get() { + if (this._readableState === undefined) { + return false; + } + return this._readableState.destroyed; + }, + set(value) { + // We ignore the value if the stream + // has not been initialized yet + if (!this._readableState) { + return; + } -ObjectDefineProperty(Readable.prototype, 'readableEncoding', { - enumerable: false, - get() { - return this._readableState ? this._readableState.encoding : null; + // Backward compatibility, the user is explicitly + // managing destroyed + this._readableState.destroyed = value; + } + }, + + readableEnded: { + enumerable: false, + get() { + return this._readableState ? this._readableState.endEmitted : false; + } + }, + + paused: { + get() { + return this[kPaused] !== false; + }, + set(value) { + this[kPaused] = !!value; + } } }); +// Exposed for testing purposes only. +Readable._fromList = fromList; + // Pluck off n bytes from an array of buffers. // Length is the combined lengths of all the buffers in the list. // This function is designed to be inlinable, so please take care when making