(depth, options)
| 191 | } |
| 192 | |
| 193 | [kInspect](depth, options) { |
| 194 | if (this == null) |
| 195 | throw new ERR_INVALID_THIS('TextDecoderStream'); |
| 196 | return customInspect(depth, options, 'TextDecoderStream', { |
| 197 | encoding: this.#handle.encoding, |
| 198 | fatal: this.#handle.fatal, |
| 199 | ignoreBOM: this.#handle.ignoreBOM, |
| 200 | readable: this.#transform.readable, |
| 201 | writable: this.#transform.writable, |
| 202 | }); |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | ObjectDefineProperties(TextEncoderStream.prototype, { |
nothing calls this directly
no test coverage detected