Exemplo n.º 1
0
void SLintVisitor::visit(const ast::NotExp & e)
{
    auto range = preCheck(e);
    e.getExp().accept(*this);
    postCheck(e, range);
}
Exemplo n.º 2
0
 void GlobalsCollector::visit(ast::NotExp & e)
 {
     e.getExp().accept(*this);
 }