(err error)
| 901 | func (p async) resolve(res Response) { p <- res } |
| 902 | |
| 903 | func (p async) reject(err error) { p <- err } |
| 904 | |
| 905 | // rejected is an implementation of the promise interface which is always |
| 906 | // returns an error. Values of this type are constructed using the reject |