From 8f4e18fce5ef11a4e1bcb9dd7adcd2e20a21ef0a Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 18 Apr 2009 09:27:30 +0000 Subject: [PATCH] add accessor. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69436 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/AST/Stmt.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/clang/AST/Stmt.h b/include/clang/AST/Stmt.h index fa11e6e52b..d76bc0b3c9 100644 --- a/include/clang/AST/Stmt.h +++ b/include/clang/AST/Stmt.h @@ -1357,6 +1357,7 @@ public: AtTryLoc = atTryLoc; } + SourceLocation getAtTryLoc() const { return AtTryLoc; } const Stmt *getTryBody() const { return SubStmts[TRY]; } Stmt *getTryBody() { return SubStmts[TRY]; } const ObjCAtCatchStmt *getCatchStmts() const { -- 2.50.1