Esempio n. 1
0
 void GlobalsCollector::visit(ast::CellExp & e)
 {
     for (auto mle : e.getLines())
     {
         mle->accept(*this);
     }
 }
Esempio n. 2
0
void SLintVisitor::visit(const ast::CellExp & e)
{
    auto range = preCheck(e);
    ast::exps_t lines = e.getLines();
    for (ast::exps_t::const_iterator it = lines.begin(), itEnd = lines.end(); it != itEnd ; ++it)
    {
        (*it)->accept(*this);
    }
    postCheck(e, range);
}