- Implemented ::disqualifyOnlyParenOps, which bypasses lexing if parentheses
  are the only operators found.
This commit is contained in:
Paul Beckingham 2014-11-09 14:58:51 -05:00
parent dc97348335
commit 84f9bc52ef
2 changed files with 29 additions and 7 deletions

View file

@ -128,6 +128,7 @@ private:
bool disqualifyInsufficientTerms (const std::vector <std::pair <std::string, Lexer::Type> >&) const;
bool disqualifyNoOps (const std::vector <std::pair <std::string, Lexer::Type> >&) const;
bool disqualifyOnlyParenOps (const std::vector <std::pair <std::string, Lexer::Type> >&) const;
public:
std::multimap <std::string, std::string> _entities;