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