Sketched rough parser code construction including some SQL AST classes.
This commit is contained in:
parent
f3898599fd
commit
5b20f900fc
15 changed files with 459 additions and 4 deletions
13
core/SqlAstExpression.cpp
Normal file
13
core/SqlAstExpression.cpp
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#include "SqlAstExpression.h"
|
||||
|
||||
using namespace SqlAst;
|
||||
|
||||
|
||||
std::shared_ptr<SqlAst::Expression> parseExpression(SqlParser &parser)
|
||||
{
|
||||
// get token, what is it?
|
||||
// number
|
||||
// symbol
|
||||
// left parenthesis
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue