Ejemplo n.º 1
0
 bool VisitObjCAtFinallyStmt(ObjCAtFinallyStmt *finallyStmt)
 {
     return checkLexicalEmptyStmt(finallyStmt->getFinallyBody(), this);
 }
Ejemplo n.º 2
0
 bool VisitObjCAtTryStmt(ObjCAtTryStmt *tryStmt)
 {
     return checkLexicalEmptyStmt(tryStmt->getTryBody(), this);
 }
Ejemplo n.º 3
0
 bool VisitSwitchStmt(SwitchStmt *switchStmt)
 {
     return checkLexicalEmptyStmt(switchStmt->getBody(), this);
 }
Ejemplo n.º 4
0
 bool VisitCXXTryStmt(CXXTryStmt *tryStmt)
 {
     return checkLexicalEmptyStmt(tryStmt->getTryBlock(), this);
 }