()
| 172 | } |
| 173 | |
| 174 | function lazyReadableReleasingError() { |
| 175 | if (releasingError) { |
| 176 | return releasingError; |
| 177 | } |
| 178 | releasingError = new ERR_INVALID_STATE.TypeError('Releasing reader'); |
| 179 | // Avoid V8 leak and remove userland stackstrace |
| 180 | releasingError.stack = SideEffectFreeRegExpPrototypeSymbolReplace(userModuleRegExp, releasingError.stack, ''); |
| 181 | return releasingError; |
| 182 | } |
| 183 | |
| 184 | /** |
| 185 | * @typedef {import('../abort_controller').AbortSignal} AbortSignal |
no test coverage detected