void SLintVisitor::visit(const ast::TryCatchExp & e) { auto range = preCheck(e); e.getTry().accept(*this); e.getCatch().accept(*this); postCheck(e, range); }
void InstrumentVisitor::visit(ast::TryCatchExp & e) { branchesCount += 2; e.getTry().accept(*this); e.getCatch().accept(*this); }
void GlobalsCollector::visit(ast::TryCatchExp & e) { e.getTry().accept(*this); e.getCatch().accept(*this); }