diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-08-31 23:48:11 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-08-31 23:48:11 +0000 |
commit | 6931900f43cea558c6974075256c07728dbfecc6 (patch) | |
tree | 947d80979c2a80ac298983f06a89305fd158963a /test/Index/load-namespaces.cpp | |
parent | 56bedefe92ae8f604d14bea75cc3040ab32337c2 (diff) |
Add libclang support for namespace aliases (visitation + USRs) along
with a new cursor kind for a reference to a namespace.
There's still some oddities in the source location information for
NamespaceAliasDecl that I'll address with a separate commit, so the
source locations displayed in the load-namespaces.cpp test will
change.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112676 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Index/load-namespaces.cpp')
-rw-r--r-- | test/Index/load-namespaces.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/test/Index/load-namespaces.cpp b/test/Index/load-namespaces.cpp index 2bd7cd4ca2..cf94546a24 100644 --- a/test/Index/load-namespaces.cpp +++ b/test/Index/load-namespaces.cpp @@ -10,7 +10,10 @@ namespace std { void g(); } -// FIXME: using directives, namespace aliases +namespace std98 = std; +namespace std0x = std98; + +// FIXME: using directives // RUN: c-index-test -test-load-source all %s | FileCheck %s // CHECK: load-namespaces.cpp:3:11: Namespace=std:3:11 (Definition) Extent=[3:11 - 7:2] @@ -18,5 +21,8 @@ namespace std { // CHECK: load-namespaces.cpp:5:10: FunctionDecl=f:5:10 Extent=[5:10 - 5:13] // CHECK: load-namespaces.cpp:9:11: Namespace=std:9:11 (Definition) Extent=[9:11 - 11:2] // CHECK: load-namespaces.cpp:10:8: FunctionDecl=g:10:8 Extent=[10:8 - 10:11] - +// CHECK: load-namespaces.cpp:13:1: NamespaceAlias=std98:13:1 Extent=[13:1 - 13:10] +// CHECK: load-namespaces.cpp:13:19: NamespaceRef=std:3:11 Extent=[13:19 - 13:22] +// CHECK: load-namespaces.cpp:14:1: NamespaceAlias=std0x:14:1 Extent=[14:1 - 14:10] +// CHECK: load-namespaces.cpp:14:19: NamespaceRef=std98:13:1 Extent=[14:19 - 14:24] |