Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 1 | //===--- SemaCXXScopeSpec.cpp - Semantic Analysis for C++ scope specifiers-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements C++ semantic analysis for scope specifiers. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "Sema.h" |
| 15 | #include "clang/AST/ASTContext.h" |
Douglas Gregor | 42af25f | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 16 | #include "clang/AST/DeclTemplate.h" |
Douglas Gregor | fe85ced | 2009-08-06 03:17:00 +0000 | [diff] [blame] | 17 | #include "clang/AST/ExprCXX.h" |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 18 | #include "clang/AST/NestedNameSpecifier.h" |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 19 | #include "clang/Basic/PartialDiagnostic.h" |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 20 | #include "clang/Parse/DeclSpec.h" |
| 21 | #include "llvm/ADT/STLExtras.h" |
Douglas Gregor | 7551c18 | 2009-07-22 00:28:09 +0000 | [diff] [blame] | 22 | #include "llvm/Support/raw_ostream.h" |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 23 | using namespace clang; |
| 24 | |
Douglas Gregor | 43d8863 | 2009-11-04 22:49:18 +0000 | [diff] [blame] | 25 | /// \brief Find the current instantiation that associated with the given type. |
| 26 | static CXXRecordDecl * |
| 27 | getCurrentInstantiationOf(ASTContext &Context, DeclContext *CurContext, |
| 28 | QualType T) { |
| 29 | if (T.isNull()) |
| 30 | return 0; |
| 31 | |
| 32 | T = Context.getCanonicalType(T); |
| 33 | |
| 34 | for (DeclContext *Ctx = CurContext; Ctx; Ctx = Ctx->getParent()) { |
| 35 | // If we've hit a namespace or the global scope, then the |
| 36 | // nested-name-specifier can't refer to the current instantiation. |
| 37 | if (Ctx->isFileContext()) |
| 38 | return 0; |
| 39 | |
| 40 | // Skip non-class contexts. |
| 41 | CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx); |
| 42 | if (!Record) |
| 43 | continue; |
| 44 | |
| 45 | // If this record type is not dependent, |
| 46 | if (!Record->isDependentType()) |
| 47 | return 0; |
| 48 | |
| 49 | // C++ [temp.dep.type]p1: |
| 50 | // |
| 51 | // In the definition of a class template, a nested class of a |
| 52 | // class template, a member of a class template, or a member of a |
| 53 | // nested class of a class template, a name refers to the current |
| 54 | // instantiation if it is |
| 55 | // -- the injected-class-name (9) of the class template or |
| 56 | // nested class, |
| 57 | // -- in the definition of a primary class template, the name |
| 58 | // of the class template followed by the template argument |
| 59 | // list of the primary template (as described below) |
| 60 | // enclosed in <>, |
| 61 | // -- in the definition of a nested class of a class template, |
| 62 | // the name of the nested class referenced as a member of |
| 63 | // the current instantiation, or |
| 64 | // -- in the definition of a partial specialization, the name |
| 65 | // of the class template followed by the template argument |
| 66 | // list of the partial specialization enclosed in <>. If |
| 67 | // the nth template parameter is a parameter pack, the nth |
| 68 | // template argument is a pack expansion (14.6.3) whose |
| 69 | // pattern is the name of the parameter pack. |
| 70 | // (FIXME: parameter packs) |
| 71 | // |
| 72 | // All of these options come down to having the |
| 73 | // nested-name-specifier type that is equivalent to the |
| 74 | // injected-class-name of one of the types that is currently in |
| 75 | // our context. |
| 76 | if (Context.getCanonicalType(Context.getTypeDeclType(Record)) == T) |
| 77 | return Record; |
| 78 | |
| 79 | if (ClassTemplateDecl *Template = Record->getDescribedClassTemplate()) { |
| 80 | QualType InjectedClassName |
| 81 | = Template->getInjectedClassNameType(Context); |
| 82 | if (T == Context.getCanonicalType(InjectedClassName)) |
| 83 | return Template->getTemplatedDecl(); |
| 84 | } |
| 85 | // FIXME: check for class template partial specializations |
| 86 | } |
| 87 | |
| 88 | return 0; |
| 89 | } |
| 90 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 91 | /// \brief Compute the DeclContext that is associated with the given type. |
| 92 | /// |
| 93 | /// \param T the type for which we are attempting to find a DeclContext. |
| 94 | /// |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 95 | /// \returns the declaration context represented by the type T, |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 96 | /// or NULL if the declaration context cannot be computed (e.g., because it is |
| 97 | /// dependent and not the current instantiation). |
| 98 | DeclContext *Sema::computeDeclContext(QualType T) { |
| 99 | if (const TagType *Tag = T->getAs<TagType>()) |
| 100 | return Tag->getDecl(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 101 | |
Douglas Gregor | 43d8863 | 2009-11-04 22:49:18 +0000 | [diff] [blame] | 102 | return ::getCurrentInstantiationOf(Context, CurContext, T); |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 103 | } |
| 104 | |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 105 | /// \brief Compute the DeclContext that is associated with the given |
| 106 | /// scope specifier. |
Douglas Gregor | f59a56e | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 107 | /// |
| 108 | /// \param SS the C++ scope specifier as it appears in the source |
| 109 | /// |
| 110 | /// \param EnteringContext when true, we will be entering the context of |
| 111 | /// this scope specifier, so we can retrieve the declaration context of a |
| 112 | /// class template or class template partial specialization even if it is |
| 113 | /// not the current instantiation. |
| 114 | /// |
| 115 | /// \returns the declaration context represented by the scope specifier @p SS, |
| 116 | /// or NULL if the declaration context cannot be computed (e.g., because it is |
| 117 | /// dependent and not the current instantiation). |
| 118 | DeclContext *Sema::computeDeclContext(const CXXScopeSpec &SS, |
| 119 | bool EnteringContext) { |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 120 | if (!SS.isSet() || SS.isInvalid()) |
Douglas Gregor | ca5e77f | 2009-03-18 00:36:05 +0000 | [diff] [blame] | 121 | return 0; |
Douglas Gregor | ca5e77f | 2009-03-18 00:36:05 +0000 | [diff] [blame] | 122 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 123 | NestedNameSpecifier *NNS |
Douglas Gregor | 3507369 | 2009-03-26 23:56:24 +0000 | [diff] [blame] | 124 | = static_cast<NestedNameSpecifier *>(SS.getScopeRep()); |
Douglas Gregor | 42af25f | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 125 | if (NNS->isDependent()) { |
| 126 | // If this nested-name-specifier refers to the current |
| 127 | // instantiation, return its DeclContext. |
| 128 | if (CXXRecordDecl *Record = getCurrentInstantiationOf(NNS)) |
| 129 | return Record; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 130 | |
Douglas Gregor | f59a56e | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 131 | if (EnteringContext) { |
Douglas Gregor | f59a56e | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 132 | if (const TemplateSpecializationType *SpecType |
| 133 | = dyn_cast_or_null<TemplateSpecializationType>(NNS->getAsType())) { |
Douglas Gregor | 495c35d | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 134 | // We are entering the context of the nested name specifier, so try to |
| 135 | // match the nested name specifier to either a primary class template |
| 136 | // or a class template partial specialization. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 137 | if (ClassTemplateDecl *ClassTemplate |
Douglas Gregor | f59a56e | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 138 | = dyn_cast_or_null<ClassTemplateDecl>( |
| 139 | SpecType->getTemplateName().getAsTemplateDecl())) { |
Douglas Gregor | b88e888 | 2009-07-30 17:40:51 +0000 | [diff] [blame] | 140 | QualType ContextType |
| 141 | = Context.getCanonicalType(QualType(SpecType, 0)); |
| 142 | |
Douglas Gregor | f59a56e | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 143 | // If the type of the nested name specifier is the same as the |
| 144 | // injected class name of the named class template, we're entering |
| 145 | // into that class template definition. |
| 146 | QualType Injected = ClassTemplate->getInjectedClassNameType(Context); |
Douglas Gregor | b88e888 | 2009-07-30 17:40:51 +0000 | [diff] [blame] | 147 | if (Context.hasSameType(Injected, ContextType)) |
Douglas Gregor | f59a56e | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 148 | return ClassTemplate->getTemplatedDecl(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 149 | |
Douglas Gregor | b88e888 | 2009-07-30 17:40:51 +0000 | [diff] [blame] | 150 | // If the type of the nested name specifier is the same as the |
| 151 | // type of one of the class template's class template partial |
| 152 | // specializations, we're entering into the definition of that |
| 153 | // class template partial specialization. |
| 154 | if (ClassTemplatePartialSpecializationDecl *PartialSpec |
| 155 | = ClassTemplate->findPartialSpecialization(ContextType)) |
| 156 | return PartialSpec; |
Douglas Gregor | f59a56e | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 157 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 158 | } else if (const RecordType *RecordT |
Douglas Gregor | 495c35d | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 159 | = dyn_cast_or_null<RecordType>(NNS->getAsType())) { |
| 160 | // The nested name specifier refers to a member of a class template. |
| 161 | return RecordT->getDecl(); |
Douglas Gregor | f59a56e | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 162 | } |
| 163 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 164 | |
Douglas Gregor | f59a56e | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 165 | return 0; |
Douglas Gregor | 42af25f | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 166 | } |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 167 | |
| 168 | switch (NNS->getKind()) { |
| 169 | case NestedNameSpecifier::Identifier: |
| 170 | assert(false && "Dependent nested-name-specifier has no DeclContext"); |
| 171 | break; |
| 172 | |
| 173 | case NestedNameSpecifier::Namespace: |
| 174 | return NNS->getAsNamespace(); |
| 175 | |
| 176 | case NestedNameSpecifier::TypeSpec: |
| 177 | case NestedNameSpecifier::TypeSpecWithTemplate: { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 178 | const TagType *Tag = NNS->getAsType()->getAs<TagType>(); |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 179 | assert(Tag && "Non-tag type in nested-name-specifier"); |
| 180 | return Tag->getDecl(); |
| 181 | } break; |
| 182 | |
| 183 | case NestedNameSpecifier::Global: |
| 184 | return Context.getTranslationUnitDecl(); |
| 185 | } |
| 186 | |
| 187 | // Required to silence a GCC warning. |
| 188 | return 0; |
Douglas Gregor | ca5e77f | 2009-03-18 00:36:05 +0000 | [diff] [blame] | 189 | } |
| 190 | |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 191 | bool Sema::isDependentScopeSpecifier(const CXXScopeSpec &SS) { |
| 192 | if (!SS.isSet() || SS.isInvalid()) |
| 193 | return false; |
| 194 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 195 | NestedNameSpecifier *NNS |
Douglas Gregor | 3507369 | 2009-03-26 23:56:24 +0000 | [diff] [blame] | 196 | = static_cast<NestedNameSpecifier *>(SS.getScopeRep()); |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 197 | return NNS->isDependent(); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 198 | } |
| 199 | |
Douglas Gregor | 42af25f | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 200 | // \brief Determine whether this C++ scope specifier refers to an |
| 201 | // unknown specialization, i.e., a dependent type that is not the |
| 202 | // current instantiation. |
| 203 | bool Sema::isUnknownSpecialization(const CXXScopeSpec &SS) { |
| 204 | if (!isDependentScopeSpecifier(SS)) |
| 205 | return false; |
| 206 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 207 | NestedNameSpecifier *NNS |
Douglas Gregor | 42af25f | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 208 | = static_cast<NestedNameSpecifier *>(SS.getScopeRep()); |
| 209 | return getCurrentInstantiationOf(NNS) == 0; |
| 210 | } |
| 211 | |
| 212 | /// \brief If the given nested name specifier refers to the current |
| 213 | /// instantiation, return the declaration that corresponds to that |
| 214 | /// current instantiation (C++0x [temp.dep.type]p1). |
| 215 | /// |
| 216 | /// \param NNS a dependent nested name specifier. |
| 217 | CXXRecordDecl *Sema::getCurrentInstantiationOf(NestedNameSpecifier *NNS) { |
| 218 | assert(getLangOptions().CPlusPlus && "Only callable in C++"); |
| 219 | assert(NNS->isDependent() && "Only dependent nested-name-specifier allowed"); |
| 220 | |
Douglas Gregor | f59a56e | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 221 | if (!NNS->getAsType()) |
| 222 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 223 | |
Douglas Gregor | 1560def | 2009-07-31 18:32:42 +0000 | [diff] [blame] | 224 | QualType T = QualType(NNS->getAsType(), 0); |
Douglas Gregor | 43d8863 | 2009-11-04 22:49:18 +0000 | [diff] [blame] | 225 | return ::getCurrentInstantiationOf(Context, CurContext, T); |
Douglas Gregor | 42af25f | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 226 | } |
| 227 | |
Douglas Gregor | 4fdf1fa | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 228 | /// \brief Require that the context specified by SS be complete. |
| 229 | /// |
| 230 | /// If SS refers to a type, this routine checks whether the type is |
| 231 | /// complete enough (or can be made complete enough) for name lookup |
| 232 | /// into the DeclContext. A type that is not yet completed can be |
| 233 | /// considered "complete enough" if it is a class/struct/union/enum |
| 234 | /// that is currently being defined. Or, if we have a type that names |
| 235 | /// a class template specialization that is not a complete type, we |
| 236 | /// will attempt to instantiate that class template. |
| 237 | bool Sema::RequireCompleteDeclContext(const CXXScopeSpec &SS) { |
| 238 | if (!SS.isSet() || SS.isInvalid()) |
| 239 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 240 | |
Douglas Gregor | 7cdbc58 | 2009-07-22 23:48:44 +0000 | [diff] [blame] | 241 | DeclContext *DC = computeDeclContext(SS, true); |
Douglas Gregor | 4fdf1fa | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 242 | if (TagDecl *Tag = dyn_cast<TagDecl>(DC)) { |
| 243 | // If we're currently defining this type, then lookup into the |
| 244 | // type is okay: don't complain that it isn't complete yet. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 245 | const TagType *TagT = Context.getTypeDeclType(Tag)->getAs<TagType>(); |
Douglas Gregor | 4fdf1fa | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 246 | if (TagT->isBeingDefined()) |
| 247 | return false; |
| 248 | |
| 249 | // The type must be complete. |
| 250 | return RequireCompleteType(SS.getRange().getBegin(), |
| 251 | Context.getTypeDeclType(Tag), |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 252 | PDiag(diag::err_incomplete_nested_name_spec) |
| 253 | << SS.getRange()); |
Douglas Gregor | 4fdf1fa | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | return false; |
| 257 | } |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 258 | |
| 259 | /// ActOnCXXGlobalScopeSpecifier - Return the object that represents the |
| 260 | /// global scope ('::'). |
| 261 | Sema::CXXScopeTy *Sema::ActOnCXXGlobalScopeSpecifier(Scope *S, |
| 262 | SourceLocation CCLoc) { |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 263 | return NestedNameSpecifier::GlobalSpecifier(Context); |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 264 | } |
| 265 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 266 | /// \brief Determines whether the given declaration is an valid acceptable |
| 267 | /// result for name lookup of a nested-name-specifier. |
Douglas Gregor | 374929f | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 268 | bool Sema::isAcceptableNestedNameSpecifier(NamedDecl *SD) { |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 269 | if (!SD) |
| 270 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 271 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 272 | // Namespace and namespace aliases are fine. |
| 273 | if (isa<NamespaceDecl>(SD) || isa<NamespaceAliasDecl>(SD)) |
| 274 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 275 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 276 | if (!isa<TypeDecl>(SD)) |
| 277 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 278 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 279 | // Determine whether we have a class (or, in C++0x, an enum) or |
| 280 | // a typedef thereof. If so, build the nested-name-specifier. |
| 281 | QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD)); |
| 282 | if (T->isDependentType()) |
| 283 | return true; |
| 284 | else if (TypedefDecl *TD = dyn_cast<TypedefDecl>(SD)) { |
| 285 | if (TD->getUnderlyingType()->isRecordType() || |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 286 | (Context.getLangOptions().CPlusPlus0x && |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 287 | TD->getUnderlyingType()->isEnumeralType())) |
| 288 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 289 | } else if (isa<RecordDecl>(SD) || |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 290 | (Context.getLangOptions().CPlusPlus0x && isa<EnumDecl>(SD))) |
| 291 | return true; |
| 292 | |
| 293 | return false; |
| 294 | } |
| 295 | |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 296 | /// \brief If the given nested-name-specifier begins with a bare identifier |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 297 | /// (e.g., Base::), perform name lookup for that identifier as a |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 298 | /// nested-name-specifier within the given scope, and return the result of that |
| 299 | /// name lookup. |
| 300 | NamedDecl *Sema::FindFirstQualifierInScope(Scope *S, NestedNameSpecifier *NNS) { |
| 301 | if (!S || !NNS) |
| 302 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 303 | |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 304 | while (NNS->getPrefix()) |
| 305 | NNS = NNS->getPrefix(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 306 | |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 307 | if (NNS->getKind() != NestedNameSpecifier::Identifier) |
| 308 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 309 | |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 310 | LookupResult Found(*this, NNS->getAsIdentifier(), SourceLocation(), |
| 311 | LookupNestedNameSpecifierName); |
| 312 | LookupName(Found, S); |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 313 | assert(!Found.isAmbiguous() && "Cannot handle ambiguities here yet"); |
| 314 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 315 | NamedDecl *Result = Found.getAsSingleDecl(Context); |
Douglas Gregor | 374929f | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 316 | if (isAcceptableNestedNameSpecifier(Result)) |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 317 | return Result; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 318 | |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 319 | return 0; |
| 320 | } |
| 321 | |
| 322 | /// \brief Build a new nested-name-specifier for "identifier::", as described |
| 323 | /// by ActOnCXXNestedNameSpecifier. |
| 324 | /// |
| 325 | /// This routine differs only slightly from ActOnCXXNestedNameSpecifier, in |
| 326 | /// that it contains an extra parameter \p ScopeLookupResult, which provides |
| 327 | /// the result of name lookup within the scope of the nested-name-specifier |
| 328 | /// that was computed at template definitino time. |
| 329 | Sema::CXXScopeTy *Sema::BuildCXXNestedNameSpecifier(Scope *S, |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 330 | const CXXScopeSpec &SS, |
| 331 | SourceLocation IdLoc, |
| 332 | SourceLocation CCLoc, |
Douglas Gregor | 495c35d | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 333 | IdentifierInfo &II, |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 334 | QualType ObjectType, |
| 335 | NamedDecl *ScopeLookupResult, |
Douglas Gregor | 495c35d | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 336 | bool EnteringContext) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 337 | NestedNameSpecifier *Prefix |
Douglas Gregor | 3507369 | 2009-03-26 23:56:24 +0000 | [diff] [blame] | 338 | = static_cast<NestedNameSpecifier *>(SS.getScopeRep()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 339 | |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 340 | LookupResult Found(*this, &II, IdLoc, LookupNestedNameSpecifierName); |
| 341 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 342 | // Determine where to perform name lookup |
| 343 | DeclContext *LookupCtx = 0; |
| 344 | bool isDependent = false; |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 345 | if (!ObjectType.isNull()) { |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 346 | // This nested-name-specifier occurs in a member access expression, e.g., |
| 347 | // x->B::f, and we are looking into the type of the object. |
| 348 | assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist"); |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 349 | LookupCtx = computeDeclContext(ObjectType); |
| 350 | isDependent = ObjectType->isDependentType(); |
| 351 | } else if (SS.isSet()) { |
| 352 | // This nested-name-specifier occurs after another nested-name-specifier, |
| 353 | // so long into the context associated with the prior nested-name-specifier. |
| 354 | LookupCtx = computeDeclContext(SS, EnteringContext); |
| 355 | isDependent = isDependentScopeSpecifier(SS); |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 356 | Found.setContextRange(SS.getRange()); |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 357 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 358 | |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 359 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 360 | bool ObjectTypeSearchedInScope = false; |
| 361 | if (LookupCtx) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 362 | // Perform "qualified" name lookup into the declaration context we |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 363 | // computed, which is either the type of the base of a member access |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 364 | // expression or the declaration context associated with a prior |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 365 | // nested-name-specifier. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 366 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 367 | // The declaration context must be complete. |
| 368 | if (!LookupCtx->isDependentContext() && RequireCompleteDeclContext(SS)) |
| 369 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 370 | |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 371 | LookupQualifiedName(Found, LookupCtx); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 372 | |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 373 | if (!ObjectType.isNull() && Found.empty()) { |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 374 | // C++ [basic.lookup.classref]p4: |
| 375 | // If the id-expression in a class member access is a qualified-id of |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 376 | // the form |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 377 | // |
| 378 | // class-name-or-namespace-name::... |
| 379 | // |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 380 | // the class-name-or-namespace-name following the . or -> operator is |
| 381 | // looked up both in the context of the entire postfix-expression and in |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 382 | // the scope of the class of the object expression. If the name is found |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 383 | // only in the scope of the class of the object expression, the name |
| 384 | // shall refer to a class-name. If the name is found only in the |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 385 | // context of the entire postfix-expression, the name shall refer to a |
| 386 | // class-name or namespace-name. [...] |
| 387 | // |
| 388 | // Qualified name lookup into a class will not find a namespace-name, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 389 | // so we do not need to diagnoste that case specifically. However, |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 390 | // this qualified name lookup may find nothing. In that case, perform |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 391 | // unqualified name lookup in the given scope (if available) or |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 392 | // reconstruct the result from when name lookup was performed at template |
| 393 | // definition time. |
| 394 | if (S) |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 395 | LookupName(Found, S); |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 396 | else if (ScopeLookupResult) |
| 397 | Found.addDecl(ScopeLookupResult); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 398 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 399 | ObjectTypeSearchedInScope = true; |
| 400 | } |
| 401 | } else if (isDependent) { |
| 402 | // We were not able to compute the declaration context for a dependent |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 403 | // base object type or prior nested-name-specifier, so this |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 404 | // nested-name-specifier refers to an unknown specialization. Just build |
| 405 | // a dependent nested-name-specifier. |
Douglas Gregor | 2700dcd | 2009-09-02 23:58:38 +0000 | [diff] [blame] | 406 | if (!Prefix) |
| 407 | return NestedNameSpecifier::Create(Context, &II); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 408 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 409 | return NestedNameSpecifier::Create(Context, Prefix, &II); |
| 410 | } else { |
| 411 | // Perform unqualified name lookup in the current scope. |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 412 | LookupName(Found, S); |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 413 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 414 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 415 | // FIXME: Deal with ambiguities cleanly. |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 416 | NamedDecl *SD = Found.getAsSingleDecl(Context); |
Douglas Gregor | 374929f | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 417 | if (isAcceptableNestedNameSpecifier(SD)) { |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 418 | if (!ObjectType.isNull() && !ObjectTypeSearchedInScope) { |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 419 | // C++ [basic.lookup.classref]p4: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 420 | // [...] If the name is found in both contexts, the |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 421 | // class-name-or-namespace-name shall refer to the same entity. |
| 422 | // |
| 423 | // We already found the name in the scope of the object. Now, look |
| 424 | // into the current scope (the scope of the postfix-expression) to |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 425 | // see if we can find the same name there. As above, if there is no |
| 426 | // scope, reconstruct the result from the template instantiation itself. |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 427 | NamedDecl *OuterDecl; |
| 428 | if (S) { |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 429 | LookupResult FoundOuter(*this, &II, IdLoc, LookupNestedNameSpecifierName); |
| 430 | LookupName(FoundOuter, S); |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 431 | OuterDecl = FoundOuter.getAsSingleDecl(Context); |
| 432 | } else |
| 433 | OuterDecl = ScopeLookupResult; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 434 | |
Douglas Gregor | 374929f | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 435 | if (isAcceptableNestedNameSpecifier(OuterDecl) && |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 436 | OuterDecl->getCanonicalDecl() != SD->getCanonicalDecl() && |
| 437 | (!isa<TypeDecl>(OuterDecl) || !isa<TypeDecl>(SD) || |
| 438 | !Context.hasSameType( |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 439 | Context.getTypeDeclType(cast<TypeDecl>(OuterDecl)), |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 440 | Context.getTypeDeclType(cast<TypeDecl>(SD))))) { |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 441 | Diag(IdLoc, diag::err_nested_name_member_ref_lookup_ambiguous) |
| 442 | << &II; |
| 443 | Diag(SD->getLocation(), diag::note_ambig_member_ref_object_type) |
| 444 | << ObjectType; |
| 445 | Diag(OuterDecl->getLocation(), diag::note_ambig_member_ref_scope); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 446 | |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 447 | // Fall through so that we'll pick the name we found in the object type, |
| 448 | // since that's probably what the user wanted anyway. |
| 449 | } |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 450 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 451 | |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 452 | if (NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(SD)) |
| 453 | return NestedNameSpecifier::Create(Context, Prefix, Namespace); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 454 | |
Douglas Gregor | dacd434 | 2009-08-26 00:04:55 +0000 | [diff] [blame] | 455 | // FIXME: It would be nice to maintain the namespace alias name, then |
| 456 | // see through that alias when resolving the nested-name-specifier down to |
| 457 | // a declaration context. |
Anders Carlsson | 81c85c4 | 2009-03-28 23:53:49 +0000 | [diff] [blame] | 458 | if (NamespaceAliasDecl *Alias = dyn_cast<NamespaceAliasDecl>(SD)) |
| 459 | return NestedNameSpecifier::Create(Context, Prefix, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 460 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 461 | Alias->getNamespace()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 462 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 463 | QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD)); |
| 464 | return NestedNameSpecifier::Create(Context, Prefix, false, |
| 465 | T.getTypePtr()); |
| 466 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 467 | |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 468 | // If we didn't find anything during our lookup, try again with |
| 469 | // ordinary name lookup, which can help us produce better error |
| 470 | // messages. |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 471 | if (!SD) { |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 472 | Found.clear(LookupOrdinaryName); |
| 473 | LookupName(Found, S); |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 474 | SD = Found.getAsSingleDecl(Context); |
| 475 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 476 | |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 477 | unsigned DiagID; |
| 478 | if (SD) |
| 479 | DiagID = diag::err_expected_class_or_namespace; |
Anders Carlsson | a31d5f7 | 2009-08-30 07:09:50 +0000 | [diff] [blame] | 480 | else if (SS.isSet()) { |
Douglas Gregor | 3f09327 | 2009-10-13 21:16:44 +0000 | [diff] [blame] | 481 | Diag(IdLoc, diag::err_no_member) << &II << LookupCtx << SS.getRange(); |
Anders Carlsson | a31d5f7 | 2009-08-30 07:09:50 +0000 | [diff] [blame] | 482 | return 0; |
| 483 | } else |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 484 | DiagID = diag::err_undeclared_var_use; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 485 | |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 486 | if (SS.isSet()) |
| 487 | Diag(IdLoc, DiagID) << &II << SS.getRange(); |
| 488 | else |
| 489 | Diag(IdLoc, DiagID) << &II; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 490 | |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 491 | return 0; |
| 492 | } |
| 493 | |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 494 | /// ActOnCXXNestedNameSpecifier - Called during parsing of a |
| 495 | /// nested-name-specifier. e.g. for "foo::bar::" we parsed "foo::" and now |
| 496 | /// we want to resolve "bar::". 'SS' is empty or the previously parsed |
| 497 | /// nested-name part ("foo::"), 'IdLoc' is the source location of 'bar', |
| 498 | /// 'CCLoc' is the location of '::' and 'II' is the identifier for 'bar'. |
| 499 | /// Returns a CXXScopeTy* object representing the C++ scope. |
| 500 | Sema::CXXScopeTy *Sema::ActOnCXXNestedNameSpecifier(Scope *S, |
| 501 | const CXXScopeSpec &SS, |
| 502 | SourceLocation IdLoc, |
| 503 | SourceLocation CCLoc, |
| 504 | IdentifierInfo &II, |
| 505 | TypeTy *ObjectTypePtr, |
| 506 | bool EnteringContext) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 507 | return BuildCXXNestedNameSpecifier(S, SS, IdLoc, CCLoc, II, |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 508 | QualType::getFromOpaquePtr(ObjectTypePtr), |
| 509 | /*ScopeLookupResult=*/0, EnteringContext); |
| 510 | } |
| 511 | |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 512 | Sema::CXXScopeTy *Sema::ActOnCXXNestedNameSpecifier(Scope *S, |
| 513 | const CXXScopeSpec &SS, |
| 514 | TypeTy *Ty, |
| 515 | SourceRange TypeRange, |
| 516 | SourceLocation CCLoc) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 517 | NestedNameSpecifier *Prefix |
Douglas Gregor | 3507369 | 2009-03-26 23:56:24 +0000 | [diff] [blame] | 518 | = static_cast<NestedNameSpecifier *>(SS.getScopeRep()); |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 519 | QualType T = GetTypeFromParser(Ty); |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 520 | return NestedNameSpecifier::Create(Context, Prefix, /*FIXME:*/false, |
Douglas Gregor | 3f5b61c | 2009-05-14 00:28:11 +0000 | [diff] [blame] | 521 | T.getTypePtr()); |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 522 | } |
| 523 | |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 524 | /// ActOnCXXEnterDeclaratorScope - Called when a C++ scope specifier (global |
| 525 | /// scope or nested-name-specifier) is parsed, part of a declarator-id. |
| 526 | /// After this method is called, according to [C++ 3.4.3p3], names should be |
| 527 | /// looked up in the declarator-id's scope, until the declarator is parsed and |
| 528 | /// ActOnCXXExitDeclaratorScope is called. |
| 529 | /// The 'SS' should be a non-empty valid CXXScopeSpec. |
Douglas Gregor | 7dfd0fb | 2009-09-24 23:39:01 +0000 | [diff] [blame] | 530 | bool Sema::ActOnCXXEnterDeclaratorScope(Scope *S, const CXXScopeSpec &SS) { |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 531 | assert(SS.isSet() && "Parser passed invalid CXXScopeSpec."); |
Douglas Gregor | 7dfd0fb | 2009-09-24 23:39:01 +0000 | [diff] [blame] | 532 | if (DeclContext *DC = computeDeclContext(SS, true)) { |
| 533 | // Before we enter a declarator's context, we need to make sure that |
| 534 | // it is a complete declaration context. |
| 535 | if (!DC->isDependentContext() && RequireCompleteDeclContext(SS)) |
| 536 | return true; |
| 537 | |
Douglas Gregor | 3fdbed5 | 2009-07-21 18:59:28 +0000 | [diff] [blame] | 538 | EnterDeclaratorContext(S, DC); |
Douglas Gregor | 7dfd0fb | 2009-09-24 23:39:01 +0000 | [diff] [blame] | 539 | } |
| 540 | |
| 541 | return false; |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 542 | } |
| 543 | |
| 544 | /// ActOnCXXExitDeclaratorScope - Called when a declarator that previously |
| 545 | /// invoked ActOnCXXEnterDeclaratorScope(), is finished. 'SS' is the same |
| 546 | /// CXXScopeSpec that was passed to ActOnCXXEnterDeclaratorScope as well. |
| 547 | /// Used to indicate that names should revert to being looked up in the |
| 548 | /// defining scope. |
| 549 | void Sema::ActOnCXXExitDeclaratorScope(Scope *S, const CXXScopeSpec &SS) { |
| 550 | assert(SS.isSet() && "Parser passed invalid CXXScopeSpec."); |
Douglas Gregor | dacd434 | 2009-08-26 00:04:55 +0000 | [diff] [blame] | 551 | if (SS.isInvalid()) |
| 552 | return; |
| 553 | if (computeDeclContext(SS, true)) |
Douglas Gregor | 3fdbed5 | 2009-07-21 18:59:28 +0000 | [diff] [blame] | 554 | ExitDeclaratorContext(S); |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 555 | } |