summaryrefslogtreecommitdiffstats
path: root/src/pyscanner.l
diff options
context:
space:
mode:
authorAdrian Negreanu <groleo@gmail.com>2019-07-26 10:17:43 (GMT)
committerAdrian Negreanu <groleo@gmail.com>2019-07-26 10:20:27 (GMT)
commitb30e834cd04881ddeaadf8c78a9e716b4dd6a689 (patch)
tree501e0a1db38ed64d3cff35b81e24583e75684eb1 /src/pyscanner.l
parentb118de2f38cfcb91888db571b5d9fd1a85731cd5 (diff)
downloadDoxygen-b30e834cd04881ddeaadf8c78a9e716b4dd6a689.zip
Doxygen-b30e834cd04881ddeaadf8c78a9e716b4dd6a689.tar.gz
Doxygen-b30e834cd04881ddeaadf8c78a9e716b4dd6a689.tar.bz2
take doc group out of commentscan.l
Signed-off-by: Adrian Negreanu <groleo@gmail.com>
Diffstat (limited to 'src/pyscanner.l')
-rw-r--r--src/pyscanner.l10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/pyscanner.l b/src/pyscanner.l
index fe94e64..3f98f3a 100644
--- a/src/pyscanner.l
+++ b/src/pyscanner.l
@@ -143,7 +143,7 @@ static void initEntry()
current->stat = gstat;
current->lang = SrcLangExt_Python;
current->setParent(current_root);
- initGroupInfo(current);
+ Doxygen::docGroup.initGroupInfo(current);
gstat = FALSE;
}
@@ -1772,14 +1772,14 @@ static void parseCompounds(Entry *rt)
current = new Entry;
initEntry();
- groupEnterCompound(yyFileName,yyLineNr,ce->name);
+ Doxygen::docGroup.enterCompound(yyFileName,yyLineNr,ce->name);
pyscannerYYlex() ;
g_lexInit=TRUE;
delete current; current=0;
ce->program.resize(0);
- groupLeaveCompound(yyFileName,yyLineNr,ce->name);
+ Doxygen::docGroup.leaveCompound(yyFileName,yyLineNr,ce->name);
}
parseCompounds(ce);
@@ -1839,7 +1839,7 @@ static void parseMain(const char *fileName,const char *fileBuf,Entry *rt)
initParser();
current = new Entry;
- groupEnterFile(yyFileName,yyLineNr);
+ Doxygen::docGroup.enterFile(yyFileName,yyLineNr);
current->reset();
initEntry();
@@ -1848,7 +1848,7 @@ static void parseMain(const char *fileName,const char *fileBuf,Entry *rt)
pyscannerYYlex();
g_lexInit=TRUE;
- groupLeaveFile(yyFileName,yyLineNr);
+ Doxygen::docGroup.leaveFile(yyFileName,yyLineNr);
current_root->program.resize(0);
delete current; current=0;