rename Parser::ParseObjCSelector -> Parser::ParseObjCSelectorPiece,
since it only parses one identifier out of the selector, not the
whole thing.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68867 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Parse/ParseObjc.cpp b/lib/Parse/ParseObjc.cpp
index bac3f91..42ec857 100644
--- a/lib/Parse/ParseObjc.cpp
+++ b/lib/Parse/ParseObjc.cpp
@@ -477,7 +477,7 @@
/// unsigned long const short volatile signed restrict _Complex
/// in out inout bycopy byref oneway int char float double void _Bool
///
-IdentifierInfo *Parser::ParseObjCSelector(SourceLocation &SelectorLoc) {
+IdentifierInfo *Parser::ParseObjCSelectorPiece(SourceLocation &SelectorLoc) {
switch (Tok.getKind()) {
default:
return 0;
@@ -678,7 +678,7 @@
ReturnType = ParseObjCTypeName(DSRet);
SourceLocation selLoc;
- IdentifierInfo *SelIdent = ParseObjCSelector(selLoc);
+ IdentifierInfo *SelIdent = ParseObjCSelectorPiece(selLoc);
// An unnamed colon is valid.
if (!SelIdent && Tok.isNot(tok::colon)) { // missing selector name.
@@ -739,7 +739,7 @@
// Check for another keyword selector.
SourceLocation Loc;
- SelIdent = ParseObjCSelector(Loc);
+ SelIdent = ParseObjCSelectorPiece(Loc);
if (!SelIdent && Tok.isNot(tok::colon))
break;
// We have a selector or a colon, continue parsing.
@@ -1494,7 +1494,7 @@
ExprArg ReceiverExpr) {
// Parse objc-selector
SourceLocation Loc;
- IdentifierInfo *selIdent = ParseObjCSelector(Loc);
+ IdentifierInfo *selIdent = ParseObjCSelectorPiece(Loc);
SourceLocation SelectorLoc = Loc;
@@ -1530,7 +1530,7 @@
KeyExprs.push_back(Res.release());
// Check for another keyword selector.
- selIdent = ParseObjCSelector(Loc);
+ selIdent = ParseObjCSelectorPiece(Loc);
if (!selIdent && Tok.isNot(tok::colon))
break;
// We have a selector or a colon, continue parsing.
@@ -1677,7 +1677,7 @@
llvm::SmallVector<IdentifierInfo *, 12> KeyIdents;
SourceLocation LParenLoc = ConsumeParen();
SourceLocation sLoc;
- IdentifierInfo *SelIdent = ParseObjCSelector(sLoc);
+ IdentifierInfo *SelIdent = ParseObjCSelectorPiece(sLoc);
if (!SelIdent && Tok.isNot(tok::colon)) // missing selector name.
return ExprError(Diag(Tok, diag::err_expected_ident));
@@ -1694,7 +1694,7 @@
break;
// Check for another keyword selector.
SourceLocation Loc;
- SelIdent = ParseObjCSelector(Loc);
+ SelIdent = ParseObjCSelectorPiece(Loc);
KeyIdents.push_back(SelIdent);
if (!SelIdent && Tok.isNot(tok::colon))
break;