Пример #1
0
void SLintVisitor::visit(const ast::OpExp & e)
{
    auto range = preCheck(e);
    e.getLeft().accept(*this);
    e.getRight().accept(*this);
    postCheck(e, range);
}
Пример #2
0
 void GlobalsCollector::visit(ast::OpExp & e)
 {
     e.getLeft().accept(*this);
     e.getRight().accept(*this);
 }