Move Lexer to u16string handling, for unicode support
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2019-06-15 17:20:27 +02:00
parent f73bd2003c
commit 3dc67ec8a0
21 changed files with 189 additions and 145 deletions

View File

@@ -100,7 +100,7 @@ public:
};
class LiteralStringExpression : public ParsedExpression{
const string _value;
const u16string _value;
public:
const ParsedExpressionKind GetKind() const final{
return ParsedExpressionKind::LiteralString;
@@ -111,7 +111,7 @@ public:
{
}
const string& GetValue() const{
const u16string& GetValue() const{
return _value;
}
};