SomeQuestionsOnStatement

Dear All,
I am intrested in the class of Statement.For exmple,
“i = i + 1;” vs. “i = 0;”
Are they of the same class?

cheers,
/Redder

Yes. Both are BinaryOperator.
You can easily verify that by putting both lines in simple test.cpp
file, and running clang -cc1 -ast-dump test.cpp on command line.