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