Lexer: Added ::isContiguous for word-like matching

This commit is contained in:
Paul Beckingham 2015-06-22 21:34:57 -04:00
parent e66ad50e7e
commit d9bcbdee0a
2 changed files with 30 additions and 7 deletions

View file

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