コード例 #1
0
ファイル: SLintVisitor.cpp プロジェクト: adrianafs/scilab
void SLintVisitor::visit(const ast::CaseExp & e)
{
    auto range = preCheck(e);
    e.getTest()->accept(*this);
    e.getBody()->accept(*this);
    postCheck(e, range);
}
コード例 #2
0
void InstrumentVisitor::visit(ast::CaseExp & e)
{
    cover.add(macro, e.getTest());
    ++instrCounts;
    e.getBody()->accept(*this);
}
コード例 #3
0
ファイル: GlobalsCollector.cpp プロジェクト: scitao/scilab
 void GlobalsCollector::visit(ast::CaseExp & e)
 {
     e.getTest()->accept(*this);
     e.getBody()->accept(*this);
 }