<div dir="ltr"><div>What in the solution from SO is it that you can't make work? I can't see the implementation in your code, so I can't explain what, if anything is wrong with your code. <br><br></div><div>Clearly, the compiler will have to parse header files to be able to compile any [non-trivial] source file, since there are declarations and definitions there that are required to compile the whole source. So the only way to determine if the AST is part of your main file is to use a filter to say "is this from the main file or from a header" on each (top level) AST entry, which is what the SO code does.<br></div><div><br>--<br></div>Mats<br></div><div class="gmail_extra"><br><div class="gmail_quote">On 23 June 2016 at 13:28, Andreas Georgiou via cfe-dev <span dir="ltr"><<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">


<div><div dir="ltr">Hello, <div><br></div><div>As you can see I want to implement an AST visitor to extract some specific nodes from the AST. <div>Unfortunately my code traverses also the included header files which is something that I dont want because it prints me everything about them which is not what I want.</div><div>For example I want to extract every function declaration or variable declaration and their correspondig types. </div><div><br></div><div>I have found this solution in stackoverflow but I cannot make it work. </div><div><a href="http://stackoverflow.com/questions/10454075/avoid-traversing-included-system-libaries" target="_blank">http://stackoverflow.com/questions/10454075/avoid-traversing-included-system-libaries</a></div><div>My code is based on this tutorial:</div><div><a href="https://kevinaboos.wordpress.com/2013/07/23/clang-tutorial-part-i-introduction/" target="_blank">https://kevinaboos.wordpress.com/2013/07/23/clang-tutorial-part-i-introduction/</a></div><div><br></div><div>Please also find attached my code.</div><div><br></div><div>Thank you for your help.</div><span class="HOEnZb"><font color="#888888"><div>Andreas Georgiou</div><div><br></div></font></span></div>                                       </div></div>
<br>_______________________________________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@lists.llvm.org">cfe-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev</a><br>
<br></blockquote></div><br></div>