- Converted ::findTerminator to use the recursive scanner.
This commit is contained in:
Paul Beckingham
2014-08-17 00:41:11 -04:00
parent fb32b160b8
commit 3c612a8551
2 changed files with 20 additions and 22 deletions

View File

@@ -68,8 +68,8 @@ public:
std::string getCommand () const;
private:
void findTerminator ();
void scan (void (Parser::*callback)(Tree*), Tree* tree = NULL);
void findTerminator (Tree*);
void findPattern ();
void findSubstitution ();
void findTag ();