diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-11-03 18:04:43 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-11-03 18:04:43 (GMT) |
commit | a2a1e97fd2b0e3045482aa46978ac2d0ae1c6e11 (patch) | |
tree | 3d4fa775ba4ee12135f2ca20f59e2cb07f3efdf1 /src/scanner.l | |
parent | 4c9ea88d11a7a5b2293d2f3c63e06a32dd010850 (diff) | |
download | Doxygen-a2a1e97fd2b0e3045482aa46978ac2d0ae1c6e11.zip Doxygen-a2a1e97fd2b0e3045482aa46978ac2d0ae1c6e11.tar.gz Doxygen-a2a1e97fd2b0e3045482aa46978ac2d0ae1c6e11.tar.bz2 |
Release-1.3.4-20031103
Diffstat (limited to 'src/scanner.l')
-rw-r--r-- | src/scanner.l | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/src/scanner.l b/src/scanner.l index d70ad39..98a568a 100644 --- a/src/scanner.l +++ b/src/scanner.l @@ -672,6 +672,7 @@ PHPKW ("require"|"require_once"|"include"|"include_once"|"echo")[^a-zA-Z0-9_;] %x EnumDocArg1 %x FuncPtr %x EndFuncPtr +%x FuncPtrInit %x FuncFunc %x FuncFuncEnd %x FuncFuncType @@ -2643,8 +2644,32 @@ PHPKW ("require"|"require_once"|"include"|"include_once"|"echo")[^a-zA-Z0-9_;] lastCPPContext = YY_START; BEGIN(SkipCPP); } -<FuncQual>"=" { // typically a initialized function pointer +<FuncQual>"=" { // typically an initialized function pointer current->args += *yytext; + BEGIN(FuncPtrInit); + } +<FuncPtrInit>[{;] { + unput(*yytext); + BEGIN(FuncQual); + } +<FuncPtrInit>\" { + current->args += *yytext; + pCopyQuotedString=¤t->args; + lastStringContext=FuncPtrInit; + BEGIN(CopyString); + } +<FuncPtrInit>{CHARLIT} { + current->args += yytext; + } +<FuncPtrInit>{ID} { + current->args += yytext; + } +<FuncPtrInit>. { + current->args += *yytext; + } +<FuncPtrInit>\n { + current->args += *yytext; + yyLineNr++; } <FuncQual>{ID} { // typically a K&R style C function if (checkForKnRstyleC()) |