1 //===--- ParseCXXInlineMethods.cpp - C++ class inline methods parsing------===// 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 parsing for C++ class inline methods. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "clang/Parse/Parser.h" 15 #include "RAIIObjectsForParser.h" 16 #include "clang/AST/DeclTemplate.h" 17 #include "clang/Parse/ParseDiagnostic.h" 18 #include "clang/Sema/DeclSpec.h" 19 #include "clang/Sema/Scope.h" 20 using namespace clang; 21 22 /// ParseCXXInlineMethodDef - We parsed and verified that the specified 23 /// Declarator is a well formed C++ inline method definition. Now lex its body 24 /// and store its tokens for parsing after the C++ class is complete. 25 NamedDecl *Parser::ParseCXXInlineMethodDef(AccessSpecifier AS, 26 AttributeList *AccessAttrs, 27 ParsingDeclarator &D, 28 const ParsedTemplateInfo &TemplateInfo, 29 const VirtSpecifiers& VS, 30 FunctionDefinitionKind DefinitionKind, 31 ExprResult& Init) { 32 assert(D.isFunctionDeclarator() && "This isn't a function declarator!"); 33 assert((Tok.is(tok::l_brace) || Tok.is(tok::colon) || Tok.is(tok::kw_try) || 34 Tok.is(tok::equal)) && 35 "Current token not a '{', ':', '=', or 'try'!"); 36 37 MultiTemplateParamsArg TemplateParams( 38 TemplateInfo.TemplateParams ? TemplateInfo.TemplateParams->data() 39 : nullptr, 40 TemplateInfo.TemplateParams ? TemplateInfo.TemplateParams->size() : 0); 41 42 NamedDecl *FnD; 43 D.setFunctionDefinitionKind(DefinitionKind); 44 if (D.getDeclSpec().isFriendSpecified()) 45 FnD = Actions.ActOnFriendFunctionDecl(getCurScope(), D, 46 TemplateParams); 47 else { 48 FnD = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS, D, 49 TemplateParams, nullptr, 50 VS, ICIS_NoInit); 51 if (FnD) { 52 Actions.ProcessDeclAttributeList(getCurScope(), FnD, AccessAttrs); 53 bool TypeSpecContainsAuto = D.getDeclSpec().containsPlaceholderType(); 54 if (Init.isUsable()) 55 Actions.AddInitializerToDecl(FnD, Init.get(), false, 56 TypeSpecContainsAuto); 57 else 58 Actions.ActOnUninitializedDecl(FnD, TypeSpecContainsAuto); 59 } 60 } 61 62 HandleMemberFunctionDeclDelays(D, FnD); 63 64 D.complete(FnD); 65 66 if (TryConsumeToken(tok::equal)) { 67 if (!FnD) { 68 SkipUntil(tok::semi); 69 return nullptr; 70 } 71 72 bool Delete = false; 73 SourceLocation KWLoc; 74 if (TryConsumeToken(tok::kw_delete, KWLoc)) { 75 Diag(KWLoc, getLangOpts().CPlusPlus11 76 ? diag::warn_cxx98_compat_deleted_function 77 : diag::ext_deleted_function); 78 Actions.SetDeclDeleted(FnD, KWLoc); 79 Delete = true; 80 } else if (TryConsumeToken(tok::kw_default, KWLoc)) { 81 Diag(KWLoc, getLangOpts().CPlusPlus11 82 ? diag::warn_cxx98_compat_defaulted_function 83 : diag::ext_defaulted_function); 84 Actions.SetDeclDefaulted(FnD, KWLoc); 85 } else { 86 llvm_unreachable("function definition after = not 'delete' or 'default'"); 87 } 88 89 if (Tok.is(tok::comma)) { 90 Diag(KWLoc, diag::err_default_delete_in_multiple_declaration) 91 << Delete; 92 SkipUntil(tok::semi); 93 } else if (ExpectAndConsume(tok::semi, diag::err_expected_after, 94 Delete ? "delete" : "default")) { 95 SkipUntil(tok::semi); 96 } 97 98 return FnD; 99 } 100 101 // In delayed template parsing mode, if we are within a class template 102 // or if we are about to parse function member template then consume 103 // the tokens and store them for parsing at the end of the translation unit. 104 if (getLangOpts().DelayedTemplateParsing && 105 DefinitionKind == FDK_Definition && 106 !D.getDeclSpec().isConstexprSpecified() && 107 !(FnD && FnD->getAsFunction() && 108 FnD->getAsFunction()->getReturnType()->getContainedAutoType()) && 109 ((Actions.CurContext->isDependentContext() || 110 (TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate && 111 TemplateInfo.Kind != ParsedTemplateInfo::ExplicitSpecialization)) && 112 !Actions.IsInsideALocalClassWithinATemplateFunction())) { 113 114 CachedTokens Toks; 115 LexTemplateFunctionForLateParsing(Toks); 116 117 if (FnD) { 118 FunctionDecl *FD = FnD->getAsFunction(); 119 Actions.CheckForFunctionRedefinition(FD); 120 Actions.MarkAsLateParsedTemplate(FD, FnD, Toks); 121 } 122 123 return FnD; 124 } 125 126 // Consume the tokens and store them for later parsing. 127 128 LexedMethod* LM = new LexedMethod(this, FnD); 129 getCurrentClass().LateParsedDeclarations.push_back(LM); 130 LM->TemplateScope = getCurScope()->isTemplateParamScope(); 131 CachedTokens &Toks = LM->Toks; 132 133 tok::TokenKind kind = Tok.getKind(); 134 // Consume everything up to (and including) the left brace of the 135 // function body. 136 if (ConsumeAndStoreFunctionPrologue(Toks)) { 137 // We didn't find the left-brace we expected after the 138 // constructor initializer; we already printed an error, and it's likely 139 // impossible to recover, so don't try to parse this method later. 140 // Skip over the rest of the decl and back to somewhere that looks 141 // reasonable. 142 SkipMalformedDecl(); 143 delete getCurrentClass().LateParsedDeclarations.back(); 144 getCurrentClass().LateParsedDeclarations.pop_back(); 145 return FnD; 146 } else { 147 // Consume everything up to (and including) the matching right brace. 148 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false); 149 } 150 151 // If we're in a function-try-block, we need to store all the catch blocks. 152 if (kind == tok::kw_try) { 153 while (Tok.is(tok::kw_catch)) { 154 ConsumeAndStoreUntil(tok::l_brace, Toks, /*StopAtSemi=*/false); 155 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false); 156 } 157 } 158 159 if (FnD) { 160 // If this is a friend function, mark that it's late-parsed so that 161 // it's still known to be a definition even before we attach the 162 // parsed body. Sema needs to treat friend function definitions 163 // differently during template instantiation, and it's possible for 164 // the containing class to be instantiated before all its member 165 // function definitions are parsed. 166 // 167 // If you remove this, you can remove the code that clears the flag 168 // after parsing the member. 169 if (D.getDeclSpec().isFriendSpecified()) { 170 FunctionDecl *FD = FnD->getAsFunction(); 171 Actions.CheckForFunctionRedefinition(FD); 172 FD->setLateTemplateParsed(true); 173 } 174 } else { 175 // If semantic analysis could not build a function declaration, 176 // just throw away the late-parsed declaration. 177 delete getCurrentClass().LateParsedDeclarations.back(); 178 getCurrentClass().LateParsedDeclarations.pop_back(); 179 } 180 181 return FnD; 182 } 183 184 /// ParseCXXNonStaticMemberInitializer - We parsed and verified that the 185 /// specified Declarator is a well formed C++ non-static data member 186 /// declaration. Now lex its initializer and store its tokens for parsing 187 /// after the class is complete. 188 void Parser::ParseCXXNonStaticMemberInitializer(Decl *VarD) { 189 assert((Tok.is(tok::l_brace) || Tok.is(tok::equal)) && 190 "Current token not a '{' or '='!"); 191 192 LateParsedMemberInitializer *MI = 193 new LateParsedMemberInitializer(this, VarD); 194 getCurrentClass().LateParsedDeclarations.push_back(MI); 195 CachedTokens &Toks = MI->Toks; 196 197 tok::TokenKind kind = Tok.getKind(); 198 if (kind == tok::equal) { 199 Toks.push_back(Tok); 200 ConsumeToken(); 201 } 202 203 if (kind == tok::l_brace) { 204 // Begin by storing the '{' token. 205 Toks.push_back(Tok); 206 ConsumeBrace(); 207 208 // Consume everything up to (and including) the matching right brace. 209 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/true); 210 } else { 211 // Consume everything up to (but excluding) the comma or semicolon. 212 ConsumeAndStoreInitializer(Toks, CIK_DefaultInitializer); 213 } 214 215 // Store an artificial EOF token to ensure that we don't run off the end of 216 // the initializer when we come to parse it. 217 Token Eof; 218 Eof.startToken(); 219 Eof.setKind(tok::eof); 220 Eof.setLocation(Tok.getLocation()); 221 Eof.setEofData(VarD); 222 Toks.push_back(Eof); 223 } 224 225 Parser::LateParsedDeclaration::~LateParsedDeclaration() {} 226 void Parser::LateParsedDeclaration::ParseLexedMethodDeclarations() {} 227 void Parser::LateParsedDeclaration::ParseLexedMemberInitializers() {} 228 void Parser::LateParsedDeclaration::ParseLexedMethodDefs() {} 229 230 Parser::LateParsedClass::LateParsedClass(Parser *P, ParsingClass *C) 231 : Self(P), Class(C) {} 232 233 Parser::LateParsedClass::~LateParsedClass() { 234 Self->DeallocateParsedClasses(Class); 235 } 236 237 void Parser::LateParsedClass::ParseLexedMethodDeclarations() { 238 Self->ParseLexedMethodDeclarations(*Class); 239 } 240 241 void Parser::LateParsedClass::ParseLexedMemberInitializers() { 242 Self->ParseLexedMemberInitializers(*Class); 243 } 244 245 void Parser::LateParsedClass::ParseLexedMethodDefs() { 246 Self->ParseLexedMethodDefs(*Class); 247 } 248 249 void Parser::LateParsedMethodDeclaration::ParseLexedMethodDeclarations() { 250 Self->ParseLexedMethodDeclaration(*this); 251 } 252 253 void Parser::LexedMethod::ParseLexedMethodDefs() { 254 Self->ParseLexedMethodDef(*this); 255 } 256 257 void Parser::LateParsedMemberInitializer::ParseLexedMemberInitializers() { 258 Self->ParseLexedMemberInitializer(*this); 259 } 260 261 /// ParseLexedMethodDeclarations - We finished parsing the member 262 /// specification of a top (non-nested) C++ class. Now go over the 263 /// stack of method declarations with some parts for which parsing was 264 /// delayed (such as default arguments) and parse them. 265 void Parser::ParseLexedMethodDeclarations(ParsingClass &Class) { 266 bool HasTemplateScope = !Class.TopLevelClass && Class.TemplateScope; 267 ParseScope ClassTemplateScope(this, Scope::TemplateParamScope, 268 HasTemplateScope); 269 TemplateParameterDepthRAII CurTemplateDepthTracker(TemplateParameterDepth); 270 if (HasTemplateScope) { 271 Actions.ActOnReenterTemplateScope(getCurScope(), Class.TagOrTemplate); 272 ++CurTemplateDepthTracker; 273 } 274 275 // The current scope is still active if we're the top-level class. 276 // Otherwise we'll need to push and enter a new scope. 277 bool HasClassScope = !Class.TopLevelClass; 278 ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope, 279 HasClassScope); 280 if (HasClassScope) 281 Actions.ActOnStartDelayedMemberDeclarations(getCurScope(), 282 Class.TagOrTemplate); 283 284 for (size_t i = 0; i < Class.LateParsedDeclarations.size(); ++i) { 285 Class.LateParsedDeclarations[i]->ParseLexedMethodDeclarations(); 286 } 287 288 if (HasClassScope) 289 Actions.ActOnFinishDelayedMemberDeclarations(getCurScope(), 290 Class.TagOrTemplate); 291 } 292 293 void Parser::ParseLexedMethodDeclaration(LateParsedMethodDeclaration &LM) { 294 // If this is a member template, introduce the template parameter scope. 295 ParseScope TemplateScope(this, Scope::TemplateParamScope, LM.TemplateScope); 296 TemplateParameterDepthRAII CurTemplateDepthTracker(TemplateParameterDepth); 297 if (LM.TemplateScope) { 298 Actions.ActOnReenterTemplateScope(getCurScope(), LM.Method); 299 ++CurTemplateDepthTracker; 300 } 301 // Start the delayed C++ method declaration 302 Actions.ActOnStartDelayedCXXMethodDeclaration(getCurScope(), LM.Method); 303 304 // Introduce the parameters into scope and parse their default 305 // arguments. 306 ParseScope PrototypeScope(this, Scope::FunctionPrototypeScope | 307 Scope::FunctionDeclarationScope | Scope::DeclScope); 308 for (unsigned I = 0, N = LM.DefaultArgs.size(); I != N; ++I) { 309 // Introduce the parameter into scope. 310 Actions.ActOnDelayedCXXMethodParameter(getCurScope(), 311 LM.DefaultArgs[I].Param); 312 if (CachedTokens *Toks = LM.DefaultArgs[I].Toks) { 313 // Mark the end of the default argument so that we know when to stop when 314 // we parse it later on. 315 Token LastDefaultArgToken = Toks->back(); 316 Token DefArgEnd; 317 DefArgEnd.startToken(); 318 DefArgEnd.setKind(tok::eof); 319 DefArgEnd.setLocation(LastDefaultArgToken.getLocation().getLocWithOffset( 320 LastDefaultArgToken.getLength())); 321 DefArgEnd.setEofData(LM.DefaultArgs[I].Param); 322 Toks->push_back(DefArgEnd); 323 324 // Parse the default argument from its saved token stream. 325 Toks->push_back(Tok); // So that the current token doesn't get lost 326 PP.EnterTokenStream(&Toks->front(), Toks->size(), true, false); 327 328 // Consume the previously-pushed token. 329 ConsumeAnyToken(); 330 331 // Consume the '='. 332 assert(Tok.is(tok::equal) && "Default argument not starting with '='"); 333 SourceLocation EqualLoc = ConsumeToken(); 334 335 // The argument isn't actually potentially evaluated unless it is 336 // used. 337 EnterExpressionEvaluationContext Eval(Actions, 338 Sema::PotentiallyEvaluatedIfUsed, 339 LM.DefaultArgs[I].Param); 340 341 ExprResult DefArgResult; 342 if (getLangOpts().CPlusPlus11 && Tok.is(tok::l_brace)) { 343 Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists); 344 DefArgResult = ParseBraceInitializer(); 345 } else 346 DefArgResult = ParseAssignmentExpression(); 347 DefArgResult = Actions.CorrectDelayedTyposInExpr(DefArgResult); 348 if (DefArgResult.isInvalid()) { 349 Actions.ActOnParamDefaultArgumentError(LM.DefaultArgs[I].Param, 350 EqualLoc); 351 } else { 352 if (Tok.isNot(tok::eof) || 353 Tok.getEofData() != LM.DefaultArgs[I].Param) { 354 // The last two tokens are the terminator and the saved value of 355 // Tok; the last token in the default argument is the one before 356 // those. 357 assert(Toks->size() >= 3 && "expected a token in default arg"); 358 Diag(Tok.getLocation(), diag::err_default_arg_unparsed) 359 << SourceRange(Tok.getLocation(), 360 (*Toks)[Toks->size() - 3].getLocation()); 361 } 362 Actions.ActOnParamDefaultArgument(LM.DefaultArgs[I].Param, EqualLoc, 363 DefArgResult.get()); 364 } 365 366 // There could be leftover tokens (e.g. because of an error). 367 // Skip through until we reach the 'end of default argument' token. 368 while (Tok.isNot(tok::eof)) 369 ConsumeAnyToken(); 370 371 if (Tok.is(tok::eof) && Tok.getEofData() == LM.DefaultArgs[I].Param) 372 ConsumeAnyToken(); 373 374 delete Toks; 375 LM.DefaultArgs[I].Toks = nullptr; 376 } 377 } 378 379 // Parse a delayed exception-specification, if there is one. 380 if (CachedTokens *Toks = LM.ExceptionSpecTokens) { 381 // Add the 'stop' token. 382 Token LastExceptionSpecToken = Toks->back(); 383 Token ExceptionSpecEnd; 384 ExceptionSpecEnd.startToken(); 385 ExceptionSpecEnd.setKind(tok::eof); 386 ExceptionSpecEnd.setLocation( 387 LastExceptionSpecToken.getLocation().getLocWithOffset( 388 LastExceptionSpecToken.getLength())); 389 ExceptionSpecEnd.setEofData(LM.Method); 390 Toks->push_back(ExceptionSpecEnd); 391 392 // Parse the default argument from its saved token stream. 393 Toks->push_back(Tok); // So that the current token doesn't get lost 394 PP.EnterTokenStream(&Toks->front(), Toks->size(), true, false); 395 396 // Consume the previously-pushed token. 397 ConsumeAnyToken(); 398 399 // C++11 [expr.prim.general]p3: 400 // If a declaration declares a member function or member function 401 // template of a class X, the expression this is a prvalue of type 402 // "pointer to cv-qualifier-seq X" between the optional cv-qualifer-seq 403 // and the end of the function-definition, member-declarator, or 404 // declarator. 405 CXXMethodDecl *Method; 406 if (FunctionTemplateDecl *FunTmpl 407 = dyn_cast<FunctionTemplateDecl>(LM.Method)) 408 Method = cast<CXXMethodDecl>(FunTmpl->getTemplatedDecl()); 409 else 410 Method = cast<CXXMethodDecl>(LM.Method); 411 412 Sema::CXXThisScopeRAII ThisScope(Actions, Method->getParent(), 413 Method->getTypeQualifiers(), 414 getLangOpts().CPlusPlus11); 415 416 // Parse the exception-specification. 417 SourceRange SpecificationRange; 418 SmallVector<ParsedType, 4> DynamicExceptions; 419 SmallVector<SourceRange, 4> DynamicExceptionRanges; 420 ExprResult NoexceptExpr; 421 CachedTokens *ExceptionSpecTokens; 422 423 ExceptionSpecificationType EST 424 = tryParseExceptionSpecification(/*Delayed=*/false, SpecificationRange, 425 DynamicExceptions, 426 DynamicExceptionRanges, NoexceptExpr, 427 ExceptionSpecTokens); 428 429 if (Tok.isNot(tok::eof) || Tok.getEofData() != LM.Method) 430 Diag(Tok.getLocation(), diag::err_except_spec_unparsed); 431 432 // Attach the exception-specification to the method. 433 Actions.actOnDelayedExceptionSpecification(LM.Method, EST, 434 SpecificationRange, 435 DynamicExceptions, 436 DynamicExceptionRanges, 437 NoexceptExpr.isUsable()? 438 NoexceptExpr.get() : nullptr); 439 440 // There could be leftover tokens (e.g. because of an error). 441 // Skip through until we reach the original token position. 442 while (Tok.isNot(tok::eof)) 443 ConsumeAnyToken(); 444 445 // Clean up the remaining EOF token. 446 if (Tok.is(tok::eof) && Tok.getEofData() == LM.Method) 447 ConsumeAnyToken(); 448 449 delete Toks; 450 LM.ExceptionSpecTokens = nullptr; 451 } 452 453 PrototypeScope.Exit(); 454 455 // Finish the delayed C++ method declaration. 456 Actions.ActOnFinishDelayedCXXMethodDeclaration(getCurScope(), LM.Method); 457 } 458 459 /// ParseLexedMethodDefs - We finished parsing the member specification of a top 460 /// (non-nested) C++ class. Now go over the stack of lexed methods that were 461 /// collected during its parsing and parse them all. 462 void Parser::ParseLexedMethodDefs(ParsingClass &Class) { 463 bool HasTemplateScope = !Class.TopLevelClass && Class.TemplateScope; 464 ParseScope ClassTemplateScope(this, Scope::TemplateParamScope, HasTemplateScope); 465 TemplateParameterDepthRAII CurTemplateDepthTracker(TemplateParameterDepth); 466 if (HasTemplateScope) { 467 Actions.ActOnReenterTemplateScope(getCurScope(), Class.TagOrTemplate); 468 ++CurTemplateDepthTracker; 469 } 470 bool HasClassScope = !Class.TopLevelClass; 471 ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope, 472 HasClassScope); 473 474 for (size_t i = 0; i < Class.LateParsedDeclarations.size(); ++i) { 475 Class.LateParsedDeclarations[i]->ParseLexedMethodDefs(); 476 } 477 } 478 479 void Parser::ParseLexedMethodDef(LexedMethod &LM) { 480 // If this is a member template, introduce the template parameter scope. 481 ParseScope TemplateScope(this, Scope::TemplateParamScope, LM.TemplateScope); 482 TemplateParameterDepthRAII CurTemplateDepthTracker(TemplateParameterDepth); 483 if (LM.TemplateScope) { 484 Actions.ActOnReenterTemplateScope(getCurScope(), LM.D); 485 ++CurTemplateDepthTracker; 486 } 487 488 assert(!LM.Toks.empty() && "Empty body!"); 489 Token LastBodyToken = LM.Toks.back(); 490 Token BodyEnd; 491 BodyEnd.startToken(); 492 BodyEnd.setKind(tok::eof); 493 BodyEnd.setLocation( 494 LastBodyToken.getLocation().getLocWithOffset(LastBodyToken.getLength())); 495 BodyEnd.setEofData(LM.D); 496 LM.Toks.push_back(BodyEnd); 497 // Append the current token at the end of the new token stream so that it 498 // doesn't get lost. 499 LM.Toks.push_back(Tok); 500 PP.EnterTokenStream(LM.Toks.data(), LM.Toks.size(), true, false); 501 502 // Consume the previously pushed token. 503 ConsumeAnyToken(/*ConsumeCodeCompletionTok=*/true); 504 assert((Tok.is(tok::l_brace) || Tok.is(tok::colon) || Tok.is(tok::kw_try)) 505 && "Inline method not starting with '{', ':' or 'try'"); 506 507 // Parse the method body. Function body parsing code is similar enough 508 // to be re-used for method bodies as well. 509 ParseScope FnScope(this, Scope::FnScope|Scope::DeclScope); 510 Actions.ActOnStartOfFunctionDef(getCurScope(), LM.D); 511 512 if (Tok.is(tok::kw_try)) { 513 ParseFunctionTryBlock(LM.D, FnScope); 514 515 while (Tok.isNot(tok::eof)) 516 ConsumeAnyToken(); 517 518 if (Tok.is(tok::eof) && Tok.getEofData() == LM.D) 519 ConsumeAnyToken(); 520 return; 521 } 522 if (Tok.is(tok::colon)) { 523 ParseConstructorInitializer(LM.D); 524 525 // Error recovery. 526 if (!Tok.is(tok::l_brace)) { 527 FnScope.Exit(); 528 Actions.ActOnFinishFunctionBody(LM.D, nullptr); 529 530 while (Tok.isNot(tok::eof)) 531 ConsumeAnyToken(); 532 533 if (Tok.is(tok::eof) && Tok.getEofData() == LM.D) 534 ConsumeAnyToken(); 535 return; 536 } 537 } else 538 Actions.ActOnDefaultCtorInitializers(LM.D); 539 540 assert((Actions.getDiagnostics().hasErrorOccurred() || 541 !isa<FunctionTemplateDecl>(LM.D) || 542 cast<FunctionTemplateDecl>(LM.D)->getTemplateParameters()->getDepth() 543 < TemplateParameterDepth) && 544 "TemplateParameterDepth should be greater than the depth of " 545 "current template being instantiated!"); 546 547 ParseFunctionStatementBody(LM.D, FnScope); 548 549 // Clear the late-template-parsed bit if we set it before. 550 if (LM.D) 551 LM.D->getAsFunction()->setLateTemplateParsed(false); 552 553 while (Tok.isNot(tok::eof)) 554 ConsumeAnyToken(); 555 556 if (Tok.is(tok::eof) && Tok.getEofData() == LM.D) 557 ConsumeAnyToken(); 558 559 if (CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(LM.D)) 560 Actions.ActOnFinishInlineMethodDef(MD); 561 } 562 563 /// ParseLexedMemberInitializers - We finished parsing the member specification 564 /// of a top (non-nested) C++ class. Now go over the stack of lexed data member 565 /// initializers that were collected during its parsing and parse them all. 566 void Parser::ParseLexedMemberInitializers(ParsingClass &Class) { 567 bool HasTemplateScope = !Class.TopLevelClass && Class.TemplateScope; 568 ParseScope ClassTemplateScope(this, Scope::TemplateParamScope, 569 HasTemplateScope); 570 TemplateParameterDepthRAII CurTemplateDepthTracker(TemplateParameterDepth); 571 if (HasTemplateScope) { 572 Actions.ActOnReenterTemplateScope(getCurScope(), Class.TagOrTemplate); 573 ++CurTemplateDepthTracker; 574 } 575 // Set or update the scope flags. 576 bool AlreadyHasClassScope = Class.TopLevelClass; 577 unsigned ScopeFlags = Scope::ClassScope|Scope::DeclScope; 578 ParseScope ClassScope(this, ScopeFlags, !AlreadyHasClassScope); 579 ParseScopeFlags ClassScopeFlags(this, ScopeFlags, AlreadyHasClassScope); 580 581 if (!AlreadyHasClassScope) 582 Actions.ActOnStartDelayedMemberDeclarations(getCurScope(), 583 Class.TagOrTemplate); 584 585 if (!Class.LateParsedDeclarations.empty()) { 586 // C++11 [expr.prim.general]p4: 587 // Otherwise, if a member-declarator declares a non-static data member 588 // (9.2) of a class X, the expression this is a prvalue of type "pointer 589 // to X" within the optional brace-or-equal-initializer. It shall not 590 // appear elsewhere in the member-declarator. 591 Sema::CXXThisScopeRAII ThisScope(Actions, Class.TagOrTemplate, 592 /*TypeQuals=*/(unsigned)0); 593 594 for (size_t i = 0; i < Class.LateParsedDeclarations.size(); ++i) { 595 Class.LateParsedDeclarations[i]->ParseLexedMemberInitializers(); 596 } 597 } 598 599 if (!AlreadyHasClassScope) 600 Actions.ActOnFinishDelayedMemberDeclarations(getCurScope(), 601 Class.TagOrTemplate); 602 603 Actions.ActOnFinishDelayedMemberInitializers(Class.TagOrTemplate); 604 } 605 606 void Parser::ParseLexedMemberInitializer(LateParsedMemberInitializer &MI) { 607 if (!MI.Field || MI.Field->isInvalidDecl()) 608 return; 609 610 // Append the current token at the end of the new token stream so that it 611 // doesn't get lost. 612 MI.Toks.push_back(Tok); 613 PP.EnterTokenStream(MI.Toks.data(), MI.Toks.size(), true, false); 614 615 // Consume the previously pushed token. 616 ConsumeAnyToken(/*ConsumeCodeCompletionTok=*/true); 617 618 SourceLocation EqualLoc; 619 620 Actions.ActOnStartCXXInClassMemberInitializer(); 621 622 ExprResult Init = ParseCXXMemberInitializer(MI.Field, /*IsFunction=*/false, 623 EqualLoc); 624 625 Actions.ActOnFinishCXXInClassMemberInitializer(MI.Field, EqualLoc, 626 Init.get()); 627 628 // The next token should be our artificial terminating EOF token. 629 if (Tok.isNot(tok::eof)) { 630 if (!Init.isInvalid()) { 631 SourceLocation EndLoc = PP.getLocForEndOfToken(PrevTokLocation); 632 if (!EndLoc.isValid()) 633 EndLoc = Tok.getLocation(); 634 // No fixit; we can't recover as if there were a semicolon here. 635 Diag(EndLoc, diag::err_expected_semi_decl_list); 636 } 637 638 // Consume tokens until we hit the artificial EOF. 639 while (Tok.isNot(tok::eof)) 640 ConsumeAnyToken(); 641 } 642 // Make sure this is *our* artificial EOF token. 643 if (Tok.getEofData() == MI.Field) 644 ConsumeAnyToken(); 645 } 646 647 /// ConsumeAndStoreUntil - Consume and store the token at the passed token 648 /// container until the token 'T' is reached (which gets 649 /// consumed/stored too, if ConsumeFinalToken). 650 /// If StopAtSemi is true, then we will stop early at a ';' character. 651 /// Returns true if token 'T1' or 'T2' was found. 652 /// NOTE: This is a specialized version of Parser::SkipUntil. 653 bool Parser::ConsumeAndStoreUntil(tok::TokenKind T1, tok::TokenKind T2, 654 CachedTokens &Toks, 655 bool StopAtSemi, bool ConsumeFinalToken) { 656 // We always want this function to consume at least one token if the first 657 // token isn't T and if not at EOF. 658 bool isFirstTokenConsumed = true; 659 while (1) { 660 // If we found one of the tokens, stop and return true. 661 if (Tok.is(T1) || Tok.is(T2)) { 662 if (ConsumeFinalToken) { 663 Toks.push_back(Tok); 664 ConsumeAnyToken(); 665 } 666 return true; 667 } 668 669 switch (Tok.getKind()) { 670 case tok::eof: 671 case tok::annot_module_begin: 672 case tok::annot_module_end: 673 case tok::annot_module_include: 674 // Ran out of tokens. 675 return false; 676 677 case tok::l_paren: 678 // Recursively consume properly-nested parens. 679 Toks.push_back(Tok); 680 ConsumeParen(); 681 ConsumeAndStoreUntil(tok::r_paren, Toks, /*StopAtSemi=*/false); 682 break; 683 case tok::l_square: 684 // Recursively consume properly-nested square brackets. 685 Toks.push_back(Tok); 686 ConsumeBracket(); 687 ConsumeAndStoreUntil(tok::r_square, Toks, /*StopAtSemi=*/false); 688 break; 689 case tok::l_brace: 690 // Recursively consume properly-nested braces. 691 Toks.push_back(Tok); 692 ConsumeBrace(); 693 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false); 694 break; 695 696 // Okay, we found a ']' or '}' or ')', which we think should be balanced. 697 // Since the user wasn't looking for this token (if they were, it would 698 // already be handled), this isn't balanced. If there is a LHS token at a 699 // higher level, we will assume that this matches the unbalanced token 700 // and return it. Otherwise, this is a spurious RHS token, which we skip. 701 case tok::r_paren: 702 if (ParenCount && !isFirstTokenConsumed) 703 return false; // Matches something. 704 Toks.push_back(Tok); 705 ConsumeParen(); 706 break; 707 case tok::r_square: 708 if (BracketCount && !isFirstTokenConsumed) 709 return false; // Matches something. 710 Toks.push_back(Tok); 711 ConsumeBracket(); 712 break; 713 case tok::r_brace: 714 if (BraceCount && !isFirstTokenConsumed) 715 return false; // Matches something. 716 Toks.push_back(Tok); 717 ConsumeBrace(); 718 break; 719 720 case tok::code_completion: 721 Toks.push_back(Tok); 722 ConsumeCodeCompletionToken(); 723 break; 724 725 case tok::string_literal: 726 case tok::wide_string_literal: 727 case tok::utf8_string_literal: 728 case tok::utf16_string_literal: 729 case tok::utf32_string_literal: 730 Toks.push_back(Tok); 731 ConsumeStringToken(); 732 break; 733 case tok::semi: 734 if (StopAtSemi) 735 return false; 736 // FALL THROUGH. 737 default: 738 // consume this token. 739 Toks.push_back(Tok); 740 ConsumeToken(); 741 break; 742 } 743 isFirstTokenConsumed = false; 744 } 745 } 746 747 /// \brief Consume tokens and store them in the passed token container until 748 /// we've passed the try keyword and constructor initializers and have consumed 749 /// the opening brace of the function body. The opening brace will be consumed 750 /// if and only if there was no error. 751 /// 752 /// \return True on error. 753 bool Parser::ConsumeAndStoreFunctionPrologue(CachedTokens &Toks) { 754 if (Tok.is(tok::kw_try)) { 755 Toks.push_back(Tok); 756 ConsumeToken(); 757 } 758 759 if (Tok.isNot(tok::colon)) { 760 // Easy case, just a function body. 761 762 // Grab any remaining garbage to be diagnosed later. We stop when we reach a 763 // brace: an opening one is the function body, while a closing one probably 764 // means we've reached the end of the class. 765 ConsumeAndStoreUntil(tok::l_brace, tok::r_brace, Toks, 766 /*StopAtSemi=*/true, 767 /*ConsumeFinalToken=*/false); 768 if (Tok.isNot(tok::l_brace)) 769 return Diag(Tok.getLocation(), diag::err_expected) << tok::l_brace; 770 771 Toks.push_back(Tok); 772 ConsumeBrace(); 773 return false; 774 } 775 776 Toks.push_back(Tok); 777 ConsumeToken(); 778 779 // We can't reliably skip over a mem-initializer-id, because it could be 780 // a template-id involving not-yet-declared names. Given: 781 // 782 // S ( ) : a < b < c > ( e ) 783 // 784 // 'e' might be an initializer or part of a template argument, depending 785 // on whether 'b' is a template. 786 787 // Track whether we might be inside a template argument. We can give 788 // significantly better diagnostics if we know that we're not. 789 bool MightBeTemplateArgument = false; 790 791 while (true) { 792 // Skip over the mem-initializer-id, if possible. 793 if (Tok.is(tok::kw_decltype)) { 794 Toks.push_back(Tok); 795 SourceLocation OpenLoc = ConsumeToken(); 796 if (Tok.isNot(tok::l_paren)) 797 return Diag(Tok.getLocation(), diag::err_expected_lparen_after) 798 << "decltype"; 799 Toks.push_back(Tok); 800 ConsumeParen(); 801 if (!ConsumeAndStoreUntil(tok::r_paren, Toks, /*StopAtSemi=*/true)) { 802 Diag(Tok.getLocation(), diag::err_expected) << tok::r_paren; 803 Diag(OpenLoc, diag::note_matching) << tok::l_paren; 804 return true; 805 } 806 } 807 do { 808 // Walk over a component of a nested-name-specifier. 809 if (Tok.is(tok::coloncolon)) { 810 Toks.push_back(Tok); 811 ConsumeToken(); 812 813 if (Tok.is(tok::kw_template)) { 814 Toks.push_back(Tok); 815 ConsumeToken(); 816 } 817 } 818 819 if (Tok.is(tok::identifier) || Tok.is(tok::kw_template)) { 820 Toks.push_back(Tok); 821 ConsumeToken(); 822 } else if (Tok.is(tok::code_completion)) { 823 Toks.push_back(Tok); 824 ConsumeCodeCompletionToken(); 825 // Consume the rest of the initializers permissively. 826 // FIXME: We should be able to perform code-completion here even if 827 // there isn't a subsequent '{' token. 828 MightBeTemplateArgument = true; 829 break; 830 } else { 831 break; 832 } 833 } while (Tok.is(tok::coloncolon)); 834 835 if (Tok.is(tok::less)) 836 MightBeTemplateArgument = true; 837 838 if (MightBeTemplateArgument) { 839 // We may be inside a template argument list. Grab up to the start of the 840 // next parenthesized initializer or braced-init-list. This *might* be the 841 // initializer, or it might be a subexpression in the template argument 842 // list. 843 // FIXME: Count angle brackets, and clear MightBeTemplateArgument 844 // if all angles are closed. 845 if (!ConsumeAndStoreUntil(tok::l_paren, tok::l_brace, Toks, 846 /*StopAtSemi=*/true, 847 /*ConsumeFinalToken=*/false)) { 848 // We're not just missing the initializer, we're also missing the 849 // function body! 850 return Diag(Tok.getLocation(), diag::err_expected) << tok::l_brace; 851 } 852 } else if (Tok.isNot(tok::l_paren) && Tok.isNot(tok::l_brace)) { 853 // We found something weird in a mem-initializer-id. 854 if (getLangOpts().CPlusPlus11) 855 return Diag(Tok.getLocation(), diag::err_expected_either) 856 << tok::l_paren << tok::l_brace; 857 else 858 return Diag(Tok.getLocation(), diag::err_expected) << tok::l_paren; 859 } 860 861 tok::TokenKind kind = Tok.getKind(); 862 Toks.push_back(Tok); 863 bool IsLParen = (kind == tok::l_paren); 864 SourceLocation OpenLoc = Tok.getLocation(); 865 866 if (IsLParen) { 867 ConsumeParen(); 868 } else { 869 assert(kind == tok::l_brace && "Must be left paren or brace here."); 870 ConsumeBrace(); 871 // In C++03, this has to be the start of the function body, which 872 // means the initializer is malformed; we'll diagnose it later. 873 if (!getLangOpts().CPlusPlus11) 874 return false; 875 } 876 877 // Grab the initializer (or the subexpression of the template argument). 878 // FIXME: If we support lambdas here, we'll need to set StopAtSemi to false 879 // if we might be inside the braces of a lambda-expression. 880 tok::TokenKind CloseKind = IsLParen ? tok::r_paren : tok::r_brace; 881 if (!ConsumeAndStoreUntil(CloseKind, Toks, /*StopAtSemi=*/true)) { 882 Diag(Tok, diag::err_expected) << CloseKind; 883 Diag(OpenLoc, diag::note_matching) << kind; 884 return true; 885 } 886 887 // Grab pack ellipsis, if present. 888 if (Tok.is(tok::ellipsis)) { 889 Toks.push_back(Tok); 890 ConsumeToken(); 891 } 892 893 // If we know we just consumed a mem-initializer, we must have ',' or '{' 894 // next. 895 if (Tok.is(tok::comma)) { 896 Toks.push_back(Tok); 897 ConsumeToken(); 898 } else if (Tok.is(tok::l_brace)) { 899 // This is the function body if the ')' or '}' is immediately followed by 900 // a '{'. That cannot happen within a template argument, apart from the 901 // case where a template argument contains a compound literal: 902 // 903 // S ( ) : a < b < c > ( d ) { } 904 // // End of declaration, or still inside the template argument? 905 // 906 // ... and the case where the template argument contains a lambda: 907 // 908 // S ( ) : a < 0 && b < c > ( d ) + [ ] ( ) { return 0; } 909 // ( ) > ( ) { } 910 // 911 // FIXME: Disambiguate these cases. Note that the latter case is probably 912 // going to be made ill-formed by core issue 1607. 913 Toks.push_back(Tok); 914 ConsumeBrace(); 915 return false; 916 } else if (!MightBeTemplateArgument) { 917 return Diag(Tok.getLocation(), diag::err_expected_either) << tok::l_brace 918 << tok::comma; 919 } 920 } 921 } 922 923 /// \brief Consume and store tokens from the '?' to the ':' in a conditional 924 /// expression. 925 bool Parser::ConsumeAndStoreConditional(CachedTokens &Toks) { 926 // Consume '?'. 927 assert(Tok.is(tok::question)); 928 Toks.push_back(Tok); 929 ConsumeToken(); 930 931 while (Tok.isNot(tok::colon)) { 932 if (!ConsumeAndStoreUntil(tok::question, tok::colon, Toks, 933 /*StopAtSemi=*/true, 934 /*ConsumeFinalToken=*/false)) 935 return false; 936 937 // If we found a nested conditional, consume it. 938 if (Tok.is(tok::question) && !ConsumeAndStoreConditional(Toks)) 939 return false; 940 } 941 942 // Consume ':'. 943 Toks.push_back(Tok); 944 ConsumeToken(); 945 return true; 946 } 947 948 /// \brief A tentative parsing action that can also revert token annotations. 949 class Parser::UnannotatedTentativeParsingAction : public TentativeParsingAction { 950 public: 951 explicit UnannotatedTentativeParsingAction(Parser &Self, 952 tok::TokenKind EndKind) 953 : TentativeParsingAction(Self), Self(Self), EndKind(EndKind) { 954 // Stash away the old token stream, so we can restore it once the 955 // tentative parse is complete. 956 TentativeParsingAction Inner(Self); 957 Self.ConsumeAndStoreUntil(EndKind, Toks, true, /*ConsumeFinalToken*/false); 958 Inner.Revert(); 959 } 960 961 void RevertAnnotations() { 962 Revert(); 963 964 // Put back the original tokens. 965 Self.SkipUntil(EndKind, StopAtSemi | StopBeforeMatch); 966 if (Toks.size()) { 967 Token *Buffer = new Token[Toks.size()]; 968 std::copy(Toks.begin() + 1, Toks.end(), Buffer); 969 Buffer[Toks.size() - 1] = Self.Tok; 970 Self.PP.EnterTokenStream(Buffer, Toks.size(), true, /*Owned*/true); 971 972 Self.Tok = Toks.front(); 973 } 974 } 975 976 private: 977 Parser &Self; 978 CachedTokens Toks; 979 tok::TokenKind EndKind; 980 }; 981 982 /// ConsumeAndStoreInitializer - Consume and store the token at the passed token 983 /// container until the end of the current initializer expression (either a 984 /// default argument or an in-class initializer for a non-static data member). 985 /// 986 /// Returns \c true if we reached the end of something initializer-shaped, 987 /// \c false if we bailed out. 988 bool Parser::ConsumeAndStoreInitializer(CachedTokens &Toks, 989 CachedInitKind CIK) { 990 // We always want this function to consume at least one token if not at EOF. 991 bool IsFirstToken = true; 992 993 // Number of possible unclosed <s we've seen so far. These might be templates, 994 // and might not, but if there were none of them (or we know for sure that 995 // we're within a template), we can avoid a tentative parse. 996 unsigned AngleCount = 0; 997 unsigned KnownTemplateCount = 0; 998 999 while (1) { 1000 switch (Tok.getKind()) { 1001 case tok::comma: 1002 // If we might be in a template, perform a tentative parse to check. 1003 if (!AngleCount) 1004 // Not a template argument: this is the end of the initializer. 1005 return true; 1006 if (KnownTemplateCount) 1007 goto consume_token; 1008 1009 // We hit a comma inside angle brackets. This is the hard case. The 1010 // rule we follow is: 1011 // * For a default argument, if the tokens after the comma form a 1012 // syntactically-valid parameter-declaration-clause, in which each 1013 // parameter has an initializer, then this comma ends the default 1014 // argument. 1015 // * For a default initializer, if the tokens after the comma form a 1016 // syntactically-valid init-declarator-list, then this comma ends 1017 // the default initializer. 1018 { 1019 UnannotatedTentativeParsingAction PA(*this, 1020 CIK == CIK_DefaultInitializer 1021 ? tok::semi : tok::r_paren); 1022 Sema::TentativeAnalysisScope Scope(Actions); 1023 1024 TPResult Result = TPResult::Error; 1025 ConsumeToken(); 1026 switch (CIK) { 1027 case CIK_DefaultInitializer: 1028 Result = TryParseInitDeclaratorList(); 1029 // If we parsed a complete, ambiguous init-declarator-list, this 1030 // is only syntactically-valid if it's followed by a semicolon. 1031 if (Result == TPResult::Ambiguous && Tok.isNot(tok::semi)) 1032 Result = TPResult::False; 1033 break; 1034 1035 case CIK_DefaultArgument: 1036 bool InvalidAsDeclaration = false; 1037 Result = TryParseParameterDeclarationClause( 1038 &InvalidAsDeclaration, /*VersusTemplateArgument=*/true); 1039 // If this is an expression or a declaration with a missing 1040 // 'typename', assume it's not a declaration. 1041 if (Result == TPResult::Ambiguous && InvalidAsDeclaration) 1042 Result = TPResult::False; 1043 break; 1044 } 1045 1046 // If what follows could be a declaration, it is a declaration. 1047 if (Result != TPResult::False && Result != TPResult::Error) { 1048 PA.Revert(); 1049 return true; 1050 } 1051 1052 // In the uncommon case that we decide the following tokens are part 1053 // of a template argument, revert any annotations we've performed in 1054 // those tokens. We're not going to look them up until we've parsed 1055 // the rest of the class, and that might add more declarations. 1056 PA.RevertAnnotations(); 1057 } 1058 1059 // Keep going. We know we're inside a template argument list now. 1060 ++KnownTemplateCount; 1061 goto consume_token; 1062 1063 case tok::eof: 1064 case tok::annot_module_begin: 1065 case tok::annot_module_end: 1066 case tok::annot_module_include: 1067 // Ran out of tokens. 1068 return false; 1069 1070 case tok::less: 1071 // FIXME: A '<' can only start a template-id if it's preceded by an 1072 // identifier, an operator-function-id, or a literal-operator-id. 1073 ++AngleCount; 1074 goto consume_token; 1075 1076 case tok::question: 1077 // In 'a ? b : c', 'b' can contain an unparenthesized comma. If it does, 1078 // that is *never* the end of the initializer. Skip to the ':'. 1079 if (!ConsumeAndStoreConditional(Toks)) 1080 return false; 1081 break; 1082 1083 case tok::greatergreatergreater: 1084 if (!getLangOpts().CPlusPlus11) 1085 goto consume_token; 1086 if (AngleCount) --AngleCount; 1087 if (KnownTemplateCount) --KnownTemplateCount; 1088 // Fall through. 1089 case tok::greatergreater: 1090 if (!getLangOpts().CPlusPlus11) 1091 goto consume_token; 1092 if (AngleCount) --AngleCount; 1093 if (KnownTemplateCount) --KnownTemplateCount; 1094 // Fall through. 1095 case tok::greater: 1096 if (AngleCount) --AngleCount; 1097 if (KnownTemplateCount) --KnownTemplateCount; 1098 goto consume_token; 1099 1100 case tok::kw_template: 1101 // 'template' identifier '<' is known to start a template argument list, 1102 // and can be used to disambiguate the parse. 1103 // FIXME: Support all forms of 'template' unqualified-id '<'. 1104 Toks.push_back(Tok); 1105 ConsumeToken(); 1106 if (Tok.is(tok::identifier)) { 1107 Toks.push_back(Tok); 1108 ConsumeToken(); 1109 if (Tok.is(tok::less)) { 1110 ++AngleCount; 1111 ++KnownTemplateCount; 1112 Toks.push_back(Tok); 1113 ConsumeToken(); 1114 } 1115 } 1116 break; 1117 1118 case tok::kw_operator: 1119 // If 'operator' precedes other punctuation, that punctuation loses 1120 // its special behavior. 1121 Toks.push_back(Tok); 1122 ConsumeToken(); 1123 switch (Tok.getKind()) { 1124 case tok::comma: 1125 case tok::greatergreatergreater: 1126 case tok::greatergreater: 1127 case tok::greater: 1128 case tok::less: 1129 Toks.push_back(Tok); 1130 ConsumeToken(); 1131 break; 1132 default: 1133 break; 1134 } 1135 break; 1136 1137 case tok::l_paren: 1138 // Recursively consume properly-nested parens. 1139 Toks.push_back(Tok); 1140 ConsumeParen(); 1141 ConsumeAndStoreUntil(tok::r_paren, Toks, /*StopAtSemi=*/false); 1142 break; 1143 case tok::l_square: 1144 // Recursively consume properly-nested square brackets. 1145 Toks.push_back(Tok); 1146 ConsumeBracket(); 1147 ConsumeAndStoreUntil(tok::r_square, Toks, /*StopAtSemi=*/false); 1148 break; 1149 case tok::l_brace: 1150 // Recursively consume properly-nested braces. 1151 Toks.push_back(Tok); 1152 ConsumeBrace(); 1153 ConsumeAndStoreUntil(tok::r_brace, Toks, /*StopAtSemi=*/false); 1154 break; 1155 1156 // Okay, we found a ']' or '}' or ')', which we think should be balanced. 1157 // Since the user wasn't looking for this token (if they were, it would 1158 // already be handled), this isn't balanced. If there is a LHS token at a 1159 // higher level, we will assume that this matches the unbalanced token 1160 // and return it. Otherwise, this is a spurious RHS token, which we 1161 // consume and pass on to downstream code to diagnose. 1162 case tok::r_paren: 1163 if (CIK == CIK_DefaultArgument) 1164 return true; // End of the default argument. 1165 if (ParenCount && !IsFirstToken) 1166 return false; 1167 Toks.push_back(Tok); 1168 ConsumeParen(); 1169 continue; 1170 case tok::r_square: 1171 if (BracketCount && !IsFirstToken) 1172 return false; 1173 Toks.push_back(Tok); 1174 ConsumeBracket(); 1175 continue; 1176 case tok::r_brace: 1177 if (BraceCount && !IsFirstToken) 1178 return false; 1179 Toks.push_back(Tok); 1180 ConsumeBrace(); 1181 continue; 1182 1183 case tok::code_completion: 1184 Toks.push_back(Tok); 1185 ConsumeCodeCompletionToken(); 1186 break; 1187 1188 case tok::string_literal: 1189 case tok::wide_string_literal: 1190 case tok::utf8_string_literal: 1191 case tok::utf16_string_literal: 1192 case tok::utf32_string_literal: 1193 Toks.push_back(Tok); 1194 ConsumeStringToken(); 1195 break; 1196 case tok::semi: 1197 if (CIK == CIK_DefaultInitializer) 1198 return true; // End of the default initializer. 1199 // FALL THROUGH. 1200 default: 1201 consume_token: 1202 Toks.push_back(Tok); 1203 ConsumeToken(); 1204 break; 1205 } 1206 IsFirstToken = false; 1207 } 1208 } 1209