pgLab/core/SqlAstExpression.cpp

13 lines
206 B
C++

#include "SqlAstExpression.h"
using namespace SqlAst;
std::shared_ptr<SqlAst::Expression> parseExpression(SqlParser &parser)
{
// get token, what is it?
// number
// symbol
// left parenthesis
}