• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..17-Oct-2020-

ParserDriver.cppH A D17-Oct-2020449 3225

ParserDriver.hH A D17-Oct-20201.2 KiB6035

READMEH A D17-Oct-2020374 107

sqlite3_lexer.cppH A D17-Oct-2020111.9 KiB3,6242,510

sqlite3_lexer.hH A D17-Oct-202013 KiB611352

sqlite3_lexer.llH A D17-Oct-20207.6 KiB260225

sqlite3_location.hH A D17-Oct-20208.5 KiB335206

sqlite3_parser.cppH A D17-Oct-2020199.3 KiB4,7274,051

sqlite3_parser.hppH A D17-Oct-2020113 KiB4,0983,449

sqlite3_parser.yyH A D17-Oct-202031.9 KiB989894

README

1This directory contains the SQLite lexer and parser files.
2
3For convenience and to not have extra dependencies in the build process,
4the generated C++ files are included here. Please don't edit them by hand.
5To modify the lexer or parser, edit the sqlite3_lexer.ll or sqlite3_parser.yy
6files and rerun flex or bison like this:
7
8flex sqlite3_lexer.ll
9bison sqlite3_parser.yy
10