| 1728 | } |
| 1729 | |
| 1730 | void SetProgressStatusError(const absl::Status& status) { |
| 1731 | if (progress_status_.ok() && !status.ok()) { |
| 1732 | progress_status_ = status; |
| 1733 | } |
| 1734 | } |
| 1735 | |
| 1736 | // Index of the next step to be inserted, in terms of the current |
| 1737 | // subexpression |
no test coverage detected