Added main loop of parser.

This commit is contained in:
Nathan Braswell
2013-05-23 01:35:54 -04:00
parent 14fc410e00
commit e4f83cbb67
9 changed files with 142 additions and 2 deletions

View File

@@ -12,6 +12,7 @@ class Symbol {
public:
Symbol(std::string name, bool isTerminal);
~Symbol();
bool const operator==(const Symbol &other);
std::string toString();
private:
std::string name;