1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Additional coverage testing. (CVS 3823)

FossilOrigin-Name: 26b2e1aede3f776134b2d6e941d17a907843e650
This commit is contained in:
drh
2007-04-06 18:23:17 +00:00
parent 15926590ed
commit bb5f18d2ca
6 changed files with 114 additions and 33 deletions

View File

@ -210,21 +210,6 @@ static const char *const yyRuleName[] = {
};
#endif /* NDEBUG */
/*
** This function returns the symbolic name associated with a token
** value.
*/
const char *ParseTokenName(int tokenType){
#ifndef NDEBUG
if( tokenType>0 && tokenType<(sizeof(yyTokenName)/sizeof(yyTokenName[0])) ){
return yyTokenName[tokenType];
}else{
return "Unknown";
}
#else
return "";
#endif
}
#if YYSTACKDEPTH<=0
/*