Exemple #1
0
 void GlobalsCollector::visit(ast::MatrixLineExp & e)
 {
     for (auto _e : e.getColumns())
     {
         _e->accept(*this);
     }
 }
Exemple #2
0
void SLintVisitor::visit(const ast::MatrixLineExp & e)
{
    auto range = preCheck(e);
    const ast::exps_t & columns = e.getColumns();
    for (const auto column : columns)
    {
        column->accept(*this);
    }
    postCheck(e, range);
}