Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 17-Oct-2020 | - | ||||
ParserDriver.cpp | H A D | 17-Oct-2020 | 449 | 32 | 25 | |
ParserDriver.h | H A D | 17-Oct-2020 | 1.2 KiB | 60 | 35 | |
README | H A D | 17-Oct-2020 | 374 | 10 | 7 | |
sqlite3_lexer.cpp | H A D | 17-Oct-2020 | 111.9 KiB | 3,624 | 2,510 | |
sqlite3_lexer.h | H A D | 17-Oct-2020 | 13 KiB | 611 | 352 | |
sqlite3_lexer.ll | H A D | 17-Oct-2020 | 7.6 KiB | 260 | 225 | |
sqlite3_location.h | H A D | 17-Oct-2020 | 8.5 KiB | 335 | 206 | |
sqlite3_parser.cpp | H A D | 17-Oct-2020 | 199.3 KiB | 4,727 | 4,051 | |
sqlite3_parser.hpp | H A D | 17-Oct-2020 | 113 KiB | 4,098 | 3,449 | |
sqlite3_parser.yy | H A D | 17-Oct-2020 | 31.9 KiB | 989 | 894 |
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