diff options
Diffstat (limited to 'lib/Sema/SemaCodeComplete.cpp')
-rw-r--r-- | lib/Sema/SemaCodeComplete.cpp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/Sema/SemaCodeComplete.cpp b/lib/Sema/SemaCodeComplete.cpp index bfee4d8b76..50b8ffd1f4 100644 --- a/lib/Sema/SemaCodeComplete.cpp +++ b/lib/Sema/SemaCodeComplete.cpp @@ -72,3 +72,33 @@ void Sema::CodeCompleteQualifiedId(Scope *S, const CXXScopeSpec &SS, (NestedNameSpecifier *)SS.getScopeRep(), EnteringContext); } + +void Sema::CodeCompleteUsing(Scope *S) { + if (!CodeCompleter) + return; + + CodeCompleter->CodeCompleteUsing(S); +} + +void Sema::CodeCompleteUsingDirective(Scope *S) { + if (!CodeCompleter) + return; + + CodeCompleter->CodeCompleteUsingDirective(S); +} + +void Sema::CodeCompleteNamespaceDecl(Scope *S) { + if (!CodeCompleter) + return; + + CodeCompleter->CodeCompleteNamespaceDecl(S); +} + +void Sema::CodeCompleteNamespaceAliasDecl(Scope *S) { + if (!CodeCompleter) + return; + + CodeCompleter->CodeCompleteNamespaceAliasDecl(S); +} + + |