diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-02-27 17:41:30 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-02-27 17:41:30 (GMT) |
commit | 75cfc919c930dc2a5c9e6770d6b1e7b09e5e8883 (patch) | |
tree | 0e10644b6ed5c8878dc59e723fe3dcd591d57839 /src/scanner.l | |
parent | b76d4ee1ec41101fffbef5d33c5a2ea70a6c6e54 (diff) | |
download | Doxygen-75cfc919c930dc2a5c9e6770d6b1e7b09e5e8883.zip Doxygen-75cfc919c930dc2a5c9e6770d6b1e7b09e5e8883.tar.gz Doxygen-75cfc919c930dc2a5c9e6770d6b1e7b09e5e8883.tar.bz2 |
Release 2000-02-27
Diffstat (limited to 'src/scanner.l')
-rw-r--r-- | src/scanner.l | 31 |
1 files changed, 26 insertions, 5 deletions
diff --git a/src/scanner.l b/src/scanner.l index e2a587d..f784656 100644 --- a/src/scanner.l +++ b/src/scanner.l @@ -2189,7 +2189,7 @@ VAR [vV][aA][rR] lineCount(); BEGIN( ClassName ); } -<FindMembers>{B}*"interface"{BN}+ { +<FindMembers>{B}*"interface"{BN}+ { // M$/Corba IDL interface isTypedef=FALSE; current->section = Entry::INTERFACE_SEC; addType( current ) ; @@ -2200,6 +2200,17 @@ VAR [vV][aA][rR] lineCount(); BEGIN( ClassName ); } +<FindMembers>{B}*"exception"{BN}+ { // Corba IDL exception + isTypedef=FALSE; + current->section = Entry::EXCEPTION_SEC; + addType( current ) ; + current->type += " exception" ; + current->fileName = yyFileName; + current->startLine = yyLineNr; + current->bodyLine = yyLineNr; + lineCount(); + BEGIN( ClassName ); + } <FindMembers>{B}*(("typedef"{BN}+)?)"class"{BN}+ { isTypedef=((QCString)yytext).find("typedef")!=-1; current->section = Entry::CLASS_SEC; @@ -2897,7 +2908,7 @@ VAR [vV][aA][rR] while (p) { // only look for class scopes, not namespace scopes - if (p->section & Entry::COMPOUND_MASK) + if ((p->section & Entry::COMPOUND_MASK) && !p->name.isEmpty()) { //printf("Trying scope `%s'\n",p->name.data()); int i=p->name.findRev("::"); @@ -3514,8 +3525,9 @@ VAR [vV][aA][rR] lastClassTemplSpecContext = ClassVar; BEGIN( ClassTemplSpec ); } -<ClassTemplSpec>">"({BN}*{SCOPENAME})? { +<ClassTemplSpec>">"({BN}*"::"{BN}*{SCOPENAME})? { current->name += yytext; + lineCount(); if (--sharpCount<=0) { current->name = removeRedundantWhiteSpace(current->name); @@ -3580,7 +3592,7 @@ VAR [vV][aA][rR] <BasesProt>"public" { baseProt = Public; } <BasesProt>"protected" { baseProt = Protected; } <BasesProt>"private" { baseProt = Private; } -<BasesProt>{BN} {} +<BasesProt>{BN} { lineCount(); } <BasesProt>. { unput(*yytext); BEGIN(Bases); } <Bases>("::")*{BN}*({ID}{BN}*"::"{BN}*)*{ID} { //current->extends->append( @@ -3634,7 +3646,10 @@ VAR [vV][aA][rR] current->extends->append( new BaseInfo(baseName,baseProt,baseVirt) ); - baseProt=Private; + if (current->section == Entry::INTERFACE_SEC) + baseProt=Public; + else + baseProt=Private; baseVirt=Normal; baseName.resize(0); BEGIN(BasesProt); @@ -3850,6 +3865,12 @@ VAR [vV][aA][rR] current->startLine = yyLineNr; BEGIN( ClassDocArg1 ); } +<Doc,JavaDoc>{B}*{CMD}"idlexcept"{B}* { + current->section = Entry::EXCEPTIONDOC_SEC; + current->fileName = yyFileName; + current->startLine = yyLineNr; + BEGIN( ClassDocArg1 ); + } <Doc,JavaDoc>{B}*{CMD}"page"{B}* { current->section = Entry::PAGEDOC_SEC; current->fileName = yyFileName; |