(promise)
| 223 | } |
| 224 | |
| 225 | function setPromiseHandled(promise) { |
| 226 | // Alternatively, we could use the native API |
| 227 | // MarkAsHandled, but this avoids the extra boundary cross |
| 228 | // and is hopefully faster at the cost of an extra Promise |
| 229 | // allocation. |
| 230 | PromisePrototypeThen(promise, undefined, () => {}); |
| 231 | } |
| 232 | |
| 233 | async function nonOpFlush() {} |
| 234 |
no outgoing calls
no test coverage detected
searching dependent graphs…