#include <flow_graph.h>
Definition at line 31 of file flow_graph.h.
◆ BlockIterator() [1/2]
Definition at line 33 of file flow_graph.h.
34 : block_order_(block_order), current_(0) {}
◆ BlockIterator() [2/2]
dart::BlockIterator::BlockIterator |
( |
const BlockIterator & |
other | ) |
|
|
inline |
Definition at line 36 of file flow_graph.h.
38 block_order_(other.block_order_),
39 current_(other.current_) {}
◆ Advance()
void dart::BlockIterator::Advance |
( |
| ) |
|
|
inline |
◆ Current()
Definition at line 48 of file flow_graph.h.
48{ return block_order_[current_]; }
◆ Done()
bool dart::BlockIterator::Done |
( |
| ) |
const |
|
inline |
Definition at line 46 of file flow_graph.h.
46{ return current_ >= block_order_.length(); }
The documentation for this class was generated from the following file:
- third_party/dart-lang/sdk/runtime/vm/compiler/backend/flow_graph.h