aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-04-18 09:27:30 +0000
committerChris Lattner <sabre@nondot.org>2009-04-18 09:27:30 +0000
commit8f4e18fce5ef11a4e1bcb9dd7adcd2e20a21ef0a (patch)
tree5e6a32c3dbcc20557996f937179a4766f34a47aa
parentf3ef07cbe8f154ba373f42291132048687f80bf0 (diff)
add accessor.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69436 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/AST/Stmt.h1
1 files changed, 1 insertions, 0 deletions
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 {