Exemple #1
0
 //
 // 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);
         }
     }
 }
Exemple #2
0
        //
        // 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);
                }
            }
        }
Exemple #3
0
        //
        // 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);
                }
            }
        }