<div dir="ltr">It appears that <a href="http://nabble.com">nabble.com</a> failed to send your AST dump and code snippet to the mailing list. Snippets listed below.<div class="gmail_extra"><br><div class="gmail_quote">On Mon, Mar 17, 2014 at 4:13 PM, Etienne <span dir="ltr"><<a href="mailto:eollivier@bsu.edu" target="_blank">eollivier@bsu.edu</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Hello,<br>
I am working on a project where I am using the RecursiveASTVisitor to get<br>
metrics from files.<br>
I would like to exclude the parts of the AST that are from included files,<br>
so the metrics I get concern only the file I want to analyze.<br>
I tried to check the location of the Statements, Declarations etc and<br>
exclude them if their location is not the file I am analyzing.<br>
However this solution doesn't really work.<br>
As an example if I call a function from cstdarg:<br></blockquote><div><br></div><div>va_start(args, count);<br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">

As the dump shows, the location of the CallExpr is in stdarg.h so my method<br>
excludes it, even if I would like to keep it since it appears in my source<br>
file<br></blockquote><div><br></div><div><div>-CallExpr 0x6080720 </**/../lib/clang/3.5/include/stdarg.h:33:29, col:57> 'void'</div><div> |-ImplicitCastExpr 0x6080708 <col:29> 'void (*)(__va_list_tag *, ...)' <BuiltinFnToFnPtr></div>
<div> | `-DeclRefExpr 0x6080630 <col:29> '<builtin fn type>' Function 0x60804f0 '__builtin_va_start' 'void (__va_list_tag *, ...)'</div><div> |-ImplicitCastExpr 0x6080758 <myfile.cpp:68:14> '__va_list_tag *' <ArrayToPointerDecay></div>
<div> | `-DeclRefExpr 0x6080658 <col:14> 'va_list':'__va_list_tag [1]' lvalue Var 0x607fe40 'args' 'va_list':'__va_list_tag [1]'</div><div> `-DeclRefExpr 0x6080680 <col:20> 'int' lvalue ParmVar 0x607fc00 'count' 'int'</div>
</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
Would you have a suggestion to avoid this problem or an other method that<br>
could work?<br>
Thank you<br>
Etienne<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://clang-developers.42468.n3.nabble.com/Ignore-the-content-from-the-included-files-with-RecursiveASTVisitor-tp4038480.html" target="_blank">http://clang-developers.42468.n3.nabble.com/Ignore-the-content-from-the-included-files-with-RecursiveASTVisitor-tp4038480.html</a><br>

Sent from the Clang Developers mailing list archive at Nabble.com.<br>
_______________________________________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@cs.uiuc.edu">cfe-dev@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev</a><br>
</blockquote></div><br></div></div>