| 383 | //----------------------------------------------------------------------------- |
| 384 | |
| 385 | void CodeGenerator::InsertQualifierAndName(const DeclarationName& declName, |
| 386 | const NestedNameSpecifier* qualifier, |
| 387 | const bool hasTemplateKeyword) |
| 388 | { |
| 389 | mOutputFormatHelper.Append(ScopeHandler::RemoveCurrentScope(GetNestedName(qualifier)), |
| 390 | ValueOrDefault(hasTemplateKeyword, kwTemplateSpace), |
| 391 | declName.getAsString()); |
| 392 | } |
| 393 | //----------------------------------------------------------------------------- |
| 394 | |
| 395 | void CodeGenerator::InsertNamespace(const NestedNameSpecifier* stmt) |
nothing calls this directly
no test coverage detected