コード例 #1
0
ファイル: GlobalsCollector.cpp プロジェクト: scitao/scilab
 void GlobalsCollector::visit(ast::CellExp & e)
 {
     for (auto mle : e.getLines())
     {
         mle->accept(*this);
     }
 }
コード例 #2
0
ファイル: SLintVisitor.cpp プロジェクト: adrianafs/scilab
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);
}