// // Fixes full type name of each documented types/members up. // void GenerateDocComment(ModuleContainer module) { if (module.Types != null) { foreach (TypeContainer tc in module.Types) { DocUtil.GenerateTypeDocComment(tc, null, module.Compiler.Report); } } }
// // Fixes full type name of each documented types/members up. // public void GenerateDocComment(Report r) { TypeContainer root = RootContext.ToplevelTypes; if (root.Types != null) { foreach (TypeContainer tc in root.Types) { DocUtil.GenerateTypeDocComment(tc, null, r); } } }
// // Fixes full type name of each documented types/members up. // public void GenerateDocComment() { TypeContainer root = RootContext.ToplevelTypes; if (root.Types != null) { foreach (TypeContainer tc in root.Types) { DocUtil.GenerateTypeDocComment(tc, null); } } if (root.Delegates != null) { foreach (Delegate d in root.Delegates) { DocUtil.GenerateDocComment(d, null); } } }