AST: Rename getFullName -> getName on ValueDecl & MissingMemberDecl

This commit is contained in:
Anthony Latsis
2020-03-24 11:01:00 +03:00
parent 52c3d70518
commit 74252028ca
90 changed files with 457 additions and 462 deletions

View File

@@ -869,7 +869,7 @@ static void addParameters(const AbstractFunctionDecl *FD,
SourceManager &SM,
unsigned BufferID) {
ArrayRef<Identifier> ArgNames;
DeclName Name = FD->getFullName();
DeclName Name = FD->getName();
if (Name) {
ArgNames = Name.getArgumentNames();
}
@@ -882,7 +882,7 @@ static void addParameters(const SubscriptDecl *D,
SourceManager &SM,
unsigned BufferID) {
ArrayRef<Identifier> ArgNames;
DeclName Name = D->getFullName();
DeclName Name = D->getName();
if (Name) {
ArgNames = Name.getArgumentNames();
}