Rename several ObjC action methods to use the "ActOn" prefix (still a few more to do).
Remove Action::ObjCStartCategoryInterface/ObjCFinishInterface - they are unused.
.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42559 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Sema/Sema.h b/Sema/Sema.h
index e9dc4d0..6e87331 100644
--- a/Sema/Sema.h
+++ b/Sema/Sema.h
@@ -415,19 +415,19 @@
IdentifierInfo *CatName,
SourceLocation CatLoc);
- virtual DeclTy *ObjcClassDeclaration(Scope *S, SourceLocation AtClassLoc,
- IdentifierInfo **IdentList,
- unsigned NumElts);
+ virtual DeclTy *ActOnForwardClassDeclaration(Scope *S, SourceLocation Loc,
+ IdentifierInfo **IdentList,
+ unsigned NumElts);
- virtual DeclTy *ObjcForwardProtocolDeclaration(Scope *S,
- SourceLocation AtProtocolLoc,
- IdentifierInfo **IdentList,
- unsigned NumElts);
+ virtual DeclTy *ActOnForwardProtocolDeclaration(Scope *S,
+ SourceLocation AtProtocolLoc,
+ IdentifierInfo **IdentList,
+ unsigned NumElts);
virtual void ObjcAddMethodsToClass(Scope* S, DeclTy *ClassDecl,
DeclTy **allMethods, unsigned allNum);
- virtual DeclTy *ObjcBuildMethodDeclaration(SourceLocation MethodLoc,
+ virtual DeclTy *ActOnMethodDeclaration(SourceLocation MethodLoc,
tok::TokenKind MethodType, TypeTy *ReturnType, Selector Sel,
// optional arguments. The number of types/arguments is obtained
// from the Sel.getNumArgs().