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:
@ -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
|
||||
/*
|
||||
|
Reference in New Issue
Block a user