- Modified ::scan to be recursive, which will now allow arbitrary parse tree
  depth.
This commit is contained in:
Paul Beckingham
2014-08-17 00:26:41 -04:00
parent 3145134953
commit 7848b9284d
2 changed files with 10 additions and 19 deletions

View File

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