X-Git-Url: http://nitlanguage.org diff --git a/src/nitdoc.nit b/src/nitdoc.nit index e0990e7..333fa96 100644 --- a/src/nitdoc.nit +++ b/src/nitdoc.nit @@ -34,9 +34,15 @@ private class Nitdoc var phases = [ new ExtractionPhase(toolcontext, doc), + new IndexingPhase(toolcontext, doc), new MakePagePhase(toolcontext, doc), + new POSetPhase(toolcontext, doc), new ConcernsPhase(toolcontext, doc), - new StructurePhase(toolcontext, doc): DocPhase] + new StructurePhase(toolcontext, doc), + new InheritanceListsPhase(toolcontext, doc), + new IntroRedefListPhase(toolcontext, doc), + new GraphPhase(toolcontext, doc), + new RenderHTMLPhase(toolcontext, doc): DocPhase] for phase in phases do toolcontext.info("# {phase.class_name}", 1)