diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-10-20 22:00:55 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-10-20 22:00:55 +0000 |
commit | ecdcb883cbc6bb4a2445dc6f02d58d9bdb54a0ed (patch) | |
tree | 9a88c438fa389bc46038d92d1a78c94ca43e831c /test/Index/annotate-tokens-include.c | |
parent | 93f5e6a5d7690f90bc8a94e6b40d6c7d19719e0c (diff) |
Extend the preprocessing record and libclang with support for
inclusion directives, keeping track of every #include, #import,
etc. in the translation unit. We keep track of the source location and
kind of the inclusion, how the file name was spelled, and the
underlying file to which the inclusion resolved.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@116952 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Index/annotate-tokens-include.c')
-rw-r--r-- | test/Index/annotate-tokens-include.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/Index/annotate-tokens-include.c b/test/Index/annotate-tokens-include.c index 3c3c43b746..b60c1af181 100644 --- a/test/Index/annotate-tokens-include.c +++ b/test/Index/annotate-tokens-include.c @@ -1,6 +1,7 @@ #include "annotate-tokens-include.h" // RUN: c-index-test -test-annotate-tokens=%s:1:1:2:1 %s | FileCheck %s +// CHECK: Punctuation: "#" [1:1 - 1:2] inclusion directive=annotate-tokens-include.h // CHECK: Identifier: "include" [1:2 - 1:9] preprocessing directive= // CHECK: Literal: ""annotate-tokens-include.h"" [1:10 - 1:37] preprocessing directive= |