| 299 | |
| 300 | WhileContext* while_ctx() const { return while_ctx_; } |
| 301 | void set_while_ctx(WhileContext* while_ctx) { |
| 302 | DCHECK(IsExit()); |
| 303 | DCHECK(while_ctx_ == nullptr); |
| 304 | while_ctx_ = while_ctx; |
| 305 | } |
| 306 | |
| 307 | private: |
| 308 | friend class Graph; |
no test coverage detected