(value)
| 8850 | } |
| 8851 | |
| 8852 | function resolve(value) { |
| 8853 | if (!promise) return; |
| 8854 | promise._resolveCallback(value); |
| 8855 | promise = null; |
| 8856 | } |
| 8857 | |
| 8858 | function reject(reason) { |
| 8859 | if (!promise) return; |
nothing calls this directly
no outgoing calls
no test coverage detected