[cfe-commits] r69436 - /cfe/trunk/include/clang/AST/Stmt.h
Chris Lattner
sabre at nondot.org
Sat Apr 18 02:27:50 PDT 2009
Author: lattner
Date: Sat Apr 18 04:27:30 2009
New Revision: 69436
URL: http://llvm.org/viewvc/llvm-project?rev=69436&view=rev
Log:
add accessor.
Modified:
cfe/trunk/include/clang/AST/Stmt.h
Modified: cfe/trunk/include/clang/AST/Stmt.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Stmt.h?rev=69436&r1=69435&r2=69436&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Stmt.h (original)
+++ cfe/trunk/include/clang/AST/Stmt.h Sat Apr 18 04:27:30 2009
@@ -1357,6 +1357,7 @@
AtTryLoc = atTryLoc;
}
+ SourceLocation getAtTryLoc() const { return AtTryLoc; }
const Stmt *getTryBody() const { return SubStmts[TRY]; }
Stmt *getTryBody() { return SubStmts[TRY]; }
const ObjCAtCatchStmt *getCatchStmts() const {
More information about the cfe-commits
mailing list