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:
parent
44326da564
commit
914d2fe9fa
3 changed files with 85 additions and 12 deletions
|
|
@ -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
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue