Lexer: Implemented ::isLiteral, to help with parsing

This commit is contained in:
Paul Beckingham 2015-07-25 17:34:01 -04:00
parent 7354a8f13f
commit 9394b96202
2 changed files with 16 additions and 0 deletions

View file

@ -104,6 +104,7 @@ public:
bool isDOM (std::string&, Lexer::Type&);
bool isIdentifier (std::string&, Lexer::Type&);
bool isWord (std::string&, Lexer::Type&);
bool isLiteral (const std::string&);
private:
std::string _text;