Grammar: Added stubbed ::generateParseTable

This commit is contained in:
Paul Beckingham 2015-12-22 08:09:41 -05:00
parent 04f8b6bd6a
commit 6c581fb8c2
2 changed files with 7 additions and 0 deletions

View file

@ -165,3 +165,8 @@ void Grammar::validate () const
}
////////////////////////////////////////////////////////////////////////////////
void Grammar::generateParseTable ()
{
}
////////////////////////////////////////////////////////////////////////////////

View file

@ -61,7 +61,9 @@ protected:
private:
void validate () const;
void generateParseTable ();
private:
std::string _start;
std::map <std::string, Grammar::Rule> _rules;
};