- Converted all remaining methods to use collect.  Now there is full recursion
  everywhere, which means the parse tree can be arbitrarily deep.
This commit is contained in:
Paul Beckingham 2014-08-17 13:41:17 -04:00
parent dff7dae3bc
commit a3d2750f40
2 changed files with 30 additions and 20 deletions

View file

@ -47,7 +47,7 @@ public:
bool exactMatch (const std::string&, const std::string&) const;
bool canonicalize (std::string&, const std::string&, const std::string&) const;
void collect (std::vector <Tree*>&, bool, Tree* tree = NULL);
void collect (std::vector <Tree*>&, bool, Tree* tree = NULL) const;
void findBinary ();
void resolveAliases ();