コード例 #1
0
ファイル: SLintVisitor.cpp プロジェクト: adrianafs/scilab
void SLintVisitor::visit(const ast::TryCatchExp & e)
{
    auto range = preCheck(e);
    e.getTry().accept(*this);
    e.getCatch().accept(*this);
    postCheck(e, range);
}
コード例 #2
0
void InstrumentVisitor::visit(ast::TryCatchExp & e)
{
    branchesCount += 2;
    e.getTry().accept(*this);
    e.getCatch().accept(*this);
}
コード例 #3
0
ファイル: GlobalsCollector.cpp プロジェクト: scitao/scilab
 void GlobalsCollector::visit(ast::TryCatchExp & e)
 {
     e.getTry().accept(*this);
     e.getCatch().accept(*this);
 }