* Chains to the motion's promise that will resolve when the motion has * completed or will reject if motion has failed or was interrupted. * @override
(opt_resolve, opt_reject)
| 176 | * @override |
| 177 | */ |
| 178 | then(opt_resolve, opt_reject) { |
| 179 | if (!opt_resolve && !opt_reject) { |
| 180 | return this.promise_; |
| 181 | } |
| 182 | return this.promise_.then(opt_resolve, opt_reject); |
| 183 | } |
| 184 | |
| 185 | /** |
| 186 | * Callback for regardless whether the motion succeeds or fails. |
no outgoing calls
no test coverage detected