1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:37:36 +00:00

LibSQL: Create a very barebones SQL parser

This parser builds on the LibSQL lexer and currently only allows users
to parse 'CREATE TABLE' statements.
This commit is contained in:
Timothy Flynn 2021-04-18 17:38:38 -04:00 committed by Andreas Kling
parent 90517da9ca
commit 377992d33e
4 changed files with 418 additions and 0 deletions

View file

@ -1,5 +1,6 @@
set(SOURCES
Lexer.cpp
Parser.cpp
Token.cpp
)