diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-10-05 12:34:05 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-10-05 12:34:05 (GMT) |
commit | aaf87cb6d6601d665a06dc4556da4ce10c98e127 (patch) | |
tree | 97864d162da48ec2548b1b05987ddbb5301769b1 /src/scanner.l | |
parent | 7cdb9679aa5e9baf87772f2c7799ff7b5fe01207 (diff) | |
download | Doxygen-aaf87cb6d6601d665a06dc4556da4ce10c98e127.zip Doxygen-aaf87cb6d6601d665a06dc4556da4ce10c98e127.tar.gz Doxygen-aaf87cb6d6601d665a06dc4556da4ce10c98e127.tar.bz2 |
Release-1.3.4-20031005
Diffstat (limited to 'src/scanner.l')
-rw-r--r-- | src/scanner.l | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/src/scanner.l b/src/scanner.l index 1d519bc..1a4661b 100644 --- a/src/scanner.l +++ b/src/scanner.l @@ -2740,7 +2740,12 @@ PHPKW ("require"|"require_once"|"include"|"include_once"|"echo")[^a-zA-Z0-9_;] { // copy documentation found inside the body // to the previous item - previous->doc += current->doc; + if (previous->inbodyLine==-1) + { + previous->inbodyLine = current->docLine; + previous->inbodyFile = current->docFile; + } + previous->inbodyDocs += current->doc; current->doc.resize(0); } if (current->sli) // copy special list items @@ -3159,6 +3164,7 @@ PHPKW ("require"|"require_once"|"include"|"include_once"|"echo")[^a-zA-Z0-9_;] <FindMembers,FindFields,MemberSpec,FuncQual,SkipCurly,Operator,ClassVar,SkipInits,Bases>("//"{B}*)?"/**"/[^/*] { removeSlashes=(yytext[1]=='/'); lastDocContext = YY_START; + printf("Found comment block at %s:%d\n",yyFileName,yyLineNr); if (current_root->section & Entry::SCOPE_MASK) { current->inside = current_root->name+"::"; @@ -3169,6 +3175,8 @@ PHPKW ("require"|"require_once"|"include"|"include_once"|"echo")[^a-zA-Z0-9_;] } if (!Config_getBool("JAVADOC_AUTOBRIEF")) // use the Qt style { + current->docLine = yyLineNr; + current->docFile = yyFileName; tmpDocType=-1; if (!Config_getBool("HIDE_IN_BODY_DOCS") && YY_START==SkipCurly) // inside body @@ -3178,13 +3186,15 @@ PHPKW ("require"|"require_once"|"include"|"include_once"|"echo")[^a-zA-Z0-9_;] else { current->doc.resize(0); - current->docLine = yyLineNr; - current->docFile = yyFileName; } BEGIN( Doc ); } else // Use the javadoc style { + current->docLine = yyLineNr; + current->docFile = yyFileName; + current->briefLine = yyLineNr; + current->briefFile = yyFileName; if (!Config_getBool("HIDE_IN_BODY_DOCS") && YY_START==SkipCurly) // inside body { @@ -3198,10 +3208,6 @@ PHPKW ("require"|"require_once"|"include"|"include_once"|"echo")[^a-zA-Z0-9_;] tmpDocType=Doc; current->doc.resize(0); current->brief.resize(0); - current->docLine = yyLineNr; - current->docFile = yyFileName; - current->briefLine = yyLineNr; - current->briefFile = yyFileName; BEGIN( JavaDoc ); } } |