Hi,<br><br>I am currently on working on some analysis of C++ classes using Clang. I can successfully traverse the constructor's Initialization list and a classes member variables but I am stuck as to how to traverse the body of a constructor, i.e. <br>
<br>Test(int val1, int val2){<br> x = val1;<br> y = val2;<br> } <br><br>What method can I use to access the body of the constructor body (x = val1; , y = val2;) ?<br><br><br>Thanks! <br>