Lines Matching refs:newValue
131 function resolve(self, newValue) { argument
133 if (newValue === self) {
140 newValue &&
141 (typeof newValue === 'object' || typeof newValue === 'function')
143 var then = getThen(newValue);
149 newValue instanceof Promise
152 self._55 = newValue;
156 doResolve(then.bind(newValue), self);
161 self._55 = newValue;
165 function reject(self, newValue) { argument
167 self._55 = newValue;
169 Promise._87(self, newValue);