void GlobalsCollector::visit(ast::MatrixLineExp & e) { for (auto _e : e.getColumns()) { _e->accept(*this); } }
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); }