Exemplo n.º 1
0
void SLintVisitor::visit(const ast::CaseExp & e)
{
    auto range = preCheck(e);
    e.getTest()->accept(*this);
    e.getBody()->accept(*this);
    postCheck(e, range);
}
Exemplo n.º 2
0
void InstrumentVisitor::visit(ast::CaseExp & e)
{
    cover.add(macro, e.getTest());
    ++instrCounts;
    e.getBody()->accept(*this);
}
Exemplo n.º 3
0
 void GlobalsCollector::visit(ast::CaseExp & e)
 {
     e.getTest()->accept(*this);
     e.getBody()->accept(*this);
 }