- From: Domenic Denicola <notifications@github.com>
- Date: Tue, 02 Aug 2016 01:56:14 -0700
- To: whatwg/streams <streams@noreply.github.com>
Received on Tuesday, 2 August 2016 08:59:06 UTC
> > return this._closedPromise; > } > > + get desiredSize() { > + if (IsWritableStreamDefaultWriter(this) === false) { > + throw CreateWritableStreamDefaultWriterBrandCheckException('desiredSize'); > + } > + > + if (this._ownerWritableStream === undefined) { > + throw CreateWritableStreamDefaultWriterLockException('desiredSize'); > + } > + > + return WritableStreamDefaultWriterGetDesiredSize(this) > + } > + > get ready() { It would technically be a normative change as we would stop returning the same promise every time and start returning a new one for each function invocation. But I think that would be OK. --- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/whatwg/streams/pull/488/files/dfa07172203b4c292cfb5a3fc88e821a1db7c3db#r73118238
Received on Tuesday, 2 August 2016 08:59:06 UTC