- Implemented ::scan, which iterates over parse tree nodes and calls back.
  This method skips parent nodes, terminated nodes, and nodes without the '?'
  tag.
This commit is contained in:
Paul Beckingham
2014-08-16 23:53:22 -04:00
parent 1a17aac77b
commit 314ac28a0f
2 changed files with 40 additions and 0 deletions

View File

@@ -69,6 +69,7 @@ public:
private:
void findTerminator ();
void scan (void (Parser::*callback)(Tree*));
void findPattern ();
void findSubstitution ();
void findTag ();