Introduced IdExpressionAST.

This commit is contained in:
Roberto Raggi
2010-08-02 12:04:59 +02:00
parent 6226cfe1fc
commit 6324bf4460
15 changed files with 164 additions and 60 deletions

View File

@@ -275,6 +275,12 @@ virtual bool visit(BaseSpecifierAST *ast)
return false;
}
virtual bool visit(IdExpressionAST *ast)
{
nonterminal(ast->name);
return false;
}
virtual bool visit(CompoundExpressionAST *ast)
{
if (ast->lparen_token)