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