* @param {boolean} success * @private
(success)
| 238 | * @private |
| 239 | */ |
| 240 | completeContinue_(success) { |
| 241 | if (!this.continuing_) { |
| 242 | return; |
| 243 | } |
| 244 | this.continuing_ = false; |
| 245 | this.fireMove_(); |
| 246 | if (success) { |
| 247 | this.resolve_(); |
| 248 | } else { |
| 249 | this.reject_(); |
| 250 | } |
| 251 | } |
| 252 | |
| 253 | /** @private */ |
| 254 | fireMove_() { |