Removed ObjCMessageArgumentListAST

Done with Erik Verbruggen
This commit is contained in:
Roberto Raggi
2009-11-10 12:43:15 +01:00
parent 496ff15db3
commit d358c89f09
7 changed files with 12 additions and 48 deletions

View File

@@ -91,6 +91,13 @@ public:
void accept(AST *ast);
template <typename _Tp>
void accept(List<_Tp> *it)
{
for (; it; it = it->next)
accept(it->value);
}
virtual bool preVisit(AST *) { return true; }
virtual void postVisit(AST *) {}