(depth, options)
| 109 | } |
| 110 | |
| 111 | [kInspect](depth, options) { |
| 112 | if (this == null) |
| 113 | throw new ERR_INVALID_THIS('TextEncoderStream'); |
| 114 | return customInspect(depth, options, 'TextEncoderStream', { |
| 115 | encoding: this.#handle.encoding, |
| 116 | readable: this.#transform.readable, |
| 117 | writable: this.#transform.writable, |
| 118 | }); |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | class TextDecoderStream { |
nothing calls this directly
no test coverage detected