Start of new ANTLR4 based parser.

Very simple tests pass.
This commit is contained in:
eelke 2022-04-03 12:27:35 +02:00
parent 03b4194193
commit fbbe832a05
44 changed files with 860 additions and 8 deletions

View file

@ -0,0 +1,19 @@
#pragma once
#include "Literal.h"
#include <QString>
#include <string>
namespace sqlast {
class StringLiteral : public Literal
{
public:
explicit StringLiteral(const std::string s);
QString GetValue() const { return value; }
private:
QString value;
};
}