reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1275 VisitStmt(S); 1276 Record.push_back(S->getNumCatchStmts()); 1277 Record.push_back(S->getFinallyStmt() != nullptr); 1278 Record.AddStmt(S->getTryBody()); 1279 for (unsigned I = 0, N = S->getNumCatchStmts(); I != N; ++I) 1280 Record.AddStmt(S->getCatchStmt(I)); 1281 if (S->getFinallyStmt()) 1282 Record.AddStmt(S->getFinallyStmt()); 1283 Record.AddSourceLocation(S->getAtTryLoc());