summaryrefslogtreecommitdiffstats
path: root/src/debug.cpp
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/debug.cpp
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/debug.cpp')
-rw-r--r--src/debug.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/debug.cpp b/src/debug.cpp
index c67ce22..1942355 100644
--- a/src/debug.cpp
+++ b/src/debug.cpp
@@ -46,6 +46,7 @@ static LabelMap s_labels[] =
{ "extcmd", Debug::ExtCmd },
{ "markdown", Debug::Markdown },
{ "filteroutput", Debug::FilterOutput },
+ { "lex", Debug::Lex },
{ 0, (Debug::DebugMask)0 }
};