Storing identifier in Clang

Dear all:

How you store an identifier in Clang? Does it go to the AST data structure?

For example if you have the following declaration:

int x;

Will this statement have an AST node or you have an identifier table
to store the information related to variable X?