| 24 | using namespace solidity::frontend; |
| 25 | |
| 26 | bool CFG::constructFlow(ASTNode const& _astRoot) |
| 27 | { |
| 28 | _astRoot.accept(*this); |
| 29 | return !Error::containsErrors(m_errorReporter.errors()); |
| 30 | } |
| 31 | |
| 32 | |
| 33 | bool CFG::visit(FunctionDefinition const& _function) |