Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(123)

Side by Side Diff: third_party/sqlite/sqlite-src-3080704/tool/lempar.c

Issue 883353008: [sql] Import reference version of SQLite 3.8.7.4. (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@master
Patch Set: Hold back encoding change which is messing up patch. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* Driver template for the LEMON parser generator. 1 /* Driver template for the LEMON parser generator.
2 ** The author disclaims copyright to this source code. 2 ** The author disclaims copyright to this source code.
3 */ 3 */
4 /* First off, code is included that follows the "include" declaration 4 /* First off, code is included that follows the "include" declaration
5 ** in the input grammar file. */ 5 ** in the input grammar file. */
6 #include <stdio.h> 6 #include <stdio.h>
7 %% 7 %%
8 /* Next is all token values, in a form suitable for use by makeheaders. 8 /* Next is all token values, in a form suitable for use by makeheaders.
9 ** This section will be null unless lemon is run with the -m switch. 9 ** This section will be null unless lemon is run with the -m switch.
10 */ 10 */
(...skipping 830 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion); 841 yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion);
842 if( yyendofinput ){ 842 if( yyendofinput ){
843 yy_parse_failed(yypParser); 843 yy_parse_failed(yypParser);
844 } 844 }
845 yymajor = YYNOCODE; 845 yymajor = YYNOCODE;
846 #endif 846 #endif
847 } 847 }
848 }while( yymajor!=YYNOCODE && yypParser->yyidx>=0 ); 848 }while( yymajor!=YYNOCODE && yypParser->yyidx>=0 );
849 return; 849 return;
850 } 850 }
OLDNEW
« no previous file with comments | « third_party/sqlite/sqlite-src-3080704/tool/lemon.c ('k') | third_party/sqlite/sqlite-src-3080704/tool/logest.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698