summaryrefslogtreecommitdiffstats
path: root/src/fortranscanner.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/fortranscanner.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/fortranscanner.l')
-rw-r--r--src/fortranscanner.l5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/fortranscanner.l b/src/fortranscanner.l
index 2102a20..3cafc76 100644
--- a/src/fortranscanner.l
+++ b/src/fortranscanner.l
@@ -2339,7 +2339,12 @@ void FortranLanguageScanner::parseInput(const char *fileName,
QStrList & /*filesInSameTranslationUnit*/)
{
g_thisParser = this;
+
+ printlex(yy_flex_debug, TRUE, __FILE__, fileName);
+
::parseMain(fileName,fileBuf,root);
+
+ printlex(yy_flex_debug, FALSE, __FILE__, fileName);
}
void FortranLanguageScanner::parseCode(CodeOutputInterface & codeOutIntf,