diff options
author | Anders Carlsson <andersca@mac.com> | 2009-02-14 18:21:46 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-02-14 18:21:46 +0000 |
commit | ff975cfab9ada27df86038286d1678084aeb3428 (patch) | |
tree | 5207d134330172f1005e041d68e9e4c4e1658905 /include/clang/Parse/Action.h | |
parent | e308c413fa30dd137648f3fd772a75f6fa5e4d5a (diff) |
Pass the location of the start of the selector to ActOnClassMessage/ActOnInstanceMessage.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64560 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Parse/Action.h')
-rw-r--r-- | include/clang/Parse/Action.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h index 4b2bdd2714..9452983550 100644 --- a/include/clang/Parse/Action.h +++ b/include/clang/Parse/Action.h @@ -1292,8 +1292,8 @@ public: Scope *S, IdentifierInfo *receivingClassName, Selector Sel, - SourceLocation lbrac, - SourceLocation receiverLoc, + SourceLocation lbrac, SourceLocation receiverLoc, + SourceLocation selectorLoc, SourceLocation rbrac, ExprTy **ArgExprs, unsigned NumArgs) { return 0; @@ -1303,7 +1303,7 @@ public: // is obtained from NumArgs. virtual ExprResult ActOnInstanceMessage( ExprTy *receiver, Selector Sel, - SourceLocation lbrac, SourceLocation rbrac, + SourceLocation lbrac, SourceLocation selectorLoc, SourceLocation rbrac, ExprTy **ArgExprs, unsigned NumArgs) { return 0; } |