TOK_ID
%token<tok> TOK_ID
primary_expr: TOK_ID {
| postfix_expr TOK_DOT TOK_ID {
yylval->tok->type = TOK_ID;
return TOK_ID;