/NRefactory/ICSharpCode.NRefactory.CSharp/Parser/mcs/doc-bootstrap.cs
http://github.com/icsharpcode/ILSpy · C# · 59 lines · 37 code · 11 blank · 11 comment · 1 complexity · fd90bac5166c1b4c7c79f430429476ea MD5 · raw file
- //
- // doc-bootstrap.cs: Stub support for XML documentation.
- //
- // Author:
- // Raja R Harinath <rharinath@novell.com>
- //
- // Dual licensed under the terms of the MIT X11 or GNU GPL
- //
- // Copyright 2004 Novell, Inc.
- //
- //
- #if BOOTSTRAP_WITH_OLDLIB || NET_2_1
- using XmlElement = System.Object;
- namespace Mono.CSharp {
- public class DocUtil
- {
- internal static void GenerateTypeDocComment (TypeContainer t, DeclSpace ds, Report r)
- {
- }
- internal static void GenerateDocComment (MemberCore mc, DeclSpace ds, Report r)
- {
- }
- public static string GetMethodDocCommentName (MemberCore mc, ParametersCompiled p, DeclSpace ds)
- {
- return "";
- }
- internal static void OnMethodGenerateDocComment (MethodCore mc, XmlElement el, Report r)
- {
- }
- public static void GenerateEnumDocComment (Enum e, DeclSpace ds)
- {
- }
- }
- public class Documentation
- {
- public Documentation (string xml_output_filename)
- {
- }
- public bool OutputDocComment (string asmfilename, Report r)
- {
- return true;
- }
- public void GenerateDocComment ()
- {
- }
- }
- }
- #endif