()
| 1082 | } |
| 1083 | |
| 1084 | releaseLock() { |
| 1085 | if (!isReadableStreamBYOBReader(this)) |
| 1086 | throw new ERR_INVALID_THIS('ReadableStreamBYOBReader'); |
| 1087 | if (this[kState].stream === undefined) |
| 1088 | return; |
| 1089 | readableStreamBYOBReaderRelease(this); |
| 1090 | } |
| 1091 | |
| 1092 | /** |
| 1093 | * @readonly |
no test coverage detected