summaryrefslogtreecommitdiffstats
path: root/src/code.l
diff options
context:
space:
mode:
authorAlbert <albert.tests@gmail.com>2013-11-13 17:43:28 (GMT)
committerAlbert <albert.tests@gmail.com>2013-11-13 17:43:28 (GMT)
commit3c0a246bd1bcf6f0d560394fd81616260a174ae8 (patch)
treea0314c4c4ccc8e1af611823f2fd76bf991ccd519 /src/code.l
parente4b819d62fa50f0445ddad92e46b3575ce011e3c (diff)
downloadDoxygen-3c0a246bd1bcf6f0d560394fd81616260a174ae8.zip
Doxygen-3c0a246bd1bcf6f0d560394fd81616260a174ae8.tar.gz
Doxygen-3c0a246bd1bcf6f0d560394fd81616260a174ae8.tar.bz2
Debug output for lexical analyzer
In case of error messages like: input buffer overflow, can't enlarge buffer because scanner uses REJECT it is not always directly clear from which lexical analyzer (.l file) this problem comes. This patch helps to find these problems and does the following things: - when using the option -d lex with doxygen each time a lexical analyzer is called at the start a line like the following line will be given: Entering lexical analyzer: pre.l (for: ..../file.c) and at the end: Finished lexical analyzer: pre.l (for: ..../file.c) - in case the lexical analyzer has been translated with the -d option of lex / flex the above mentioned lines will be given as part of the lexical analyzer output (to stderr) and look like: --entering lexical analyzer: pre.l (for: ..../file.c) --finished lexical analyzer: pre.l (for: ..../file.c)
Diffstat (limited to 'src/code.l')
-rw-r--r--src/code.l6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/code.l b/src/code.l
index 2417bf9..b0c7104 100644
--- a/src/code.l
+++ b/src/code.l
@@ -3546,7 +3546,11 @@ void parseCCode(CodeOutputInterface &od,const char *className,const QCString &s,
{
//printf("***parseCode() exBlock=%d exName=%s fd=%p className=%s searchCtx=%s\n",
// exBlock,exName,fd,className,searchCtx?searchCtx->name().data():"<none>");
+
if (s.isEmpty()) return;
+
+ printlex(yy_flex_debug, TRUE, __FILE__, fd ? fd->fileName().data(): NULL);
+
TooltipManager::instance()->clearTooltips();
if (g_codeClassSDict==0)
{
@@ -3637,6 +3641,8 @@ void parseCCode(CodeOutputInterface &od,const char *className,const QCString &s,
delete g_sourceFileDef;
g_sourceFileDef=0;
}
+
+ printlex(yy_flex_debug, FALSE, __FILE__, fd ? fd->fileName().data(): NULL);
return;
}