diff options
author | albert-github <albert.tests@gmail.com> | 2019-09-05 12:04:14 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2019-09-05 12:04:14 (GMT) |
commit | aca16ea3b4e4beef9bf067d0b532dfa3802f7a3d (patch) | |
tree | 9c040ab60c4d6f7c1bd3503abb1b2f6d219d86f2 /src/tclscanner.l | |
parent | 98cc801013b16d827d91567998ead7b24fd78b6d (diff) | |
download | Doxygen-aca16ea3b4e4beef9bf067d0b532dfa3802f7a3d.zip Doxygen-aca16ea3b4e4beef9bf067d0b532dfa3802f7a3d.tar.gz Doxygen-aca16ea3b4e4beef9bf067d0b532dfa3802f7a3d.tar.bz2 |
Consistent way to show scanner state
Create a consistent way to display the state mnemonics of the different scanners (analogous to the fortranscanner.l)
Use an automatic procedure to generate the routine with the translation of the states to a string.
Diffstat (limited to 'src/tclscanner.l')
-rw-r--r-- | src/tclscanner.l | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tclscanner.l b/src/tclscanner.l index 88bd474..a680cf9 100644 --- a/src/tclscanner.l +++ b/src/tclscanner.l @@ -59,6 +59,8 @@ #define MAX_INCLUDE_DEPTH 10 +static const char *stateToString(int state); + //! Application error. #define tcl_err \ printf("Error %d %s() at line %d! ",__LINE__,tcl.file_name.data(),yylineno); \ @@ -3121,3 +3123,4 @@ extern "C" { // some bogus code to keep the compiler happy } #endif +#include "tclscanner.l.h" |