Lexer:: Added polymorphic ::readWord for quoteѕ and unquoted strings

This commit is contained in:
Paul Beckingham 2015-07-06 16:37:03 -04:00
parent abaf326855
commit 7a6d546a0d
3 changed files with 80 additions and 15 deletions

View file

@ -76,6 +76,7 @@ public:
static void dequote (std::string&);
static bool wasQuoted (const std::string&);
static bool readWord (const std::string&, const std::string&, std::string::size_type&, std::string&);
static bool readWord (const std::string&, std::string::size_type&, std::string&);
static bool decomposePair (const std::string&, std::string&, std::string&, std::string&, std::string&);
static int hexToInt (int);
static int hexToInt (int, int);