Lexical analyzer should now be less confused by dots and comma's and an assortment of other single character symbols.

This commit is contained in:
eelke 2018-02-05 22:23:28 +01:00
parent 44326da564
commit 914d2fe9fa
3 changed files with 85 additions and 12 deletions

View file

@ -14,6 +14,8 @@ enum class BasicTokenType {
DollarQuote, // Return the dollar quote tag, do not consume the entire string (potentially long)
QuotedIdentifier,
Parameter,
Operator,
Self, // single char representing it self
Cast
};