/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

  1. //
  2. // doc-bootstrap.cs: Stub support for XML documentation.
  3. //
  4. // Author:
  5. // Raja R Harinath <rharinath@novell.com>
  6. //
  7. // Dual licensed under the terms of the MIT X11 or GNU GPL
  8. //
  9. // Copyright 2004 Novell, Inc.
  10. //
  11. //
  12. #if BOOTSTRAP_WITH_OLDLIB || NET_2_1
  13. using XmlElement = System.Object;
  14. namespace Mono.CSharp {
  15. public class DocUtil
  16. {
  17. internal static void GenerateTypeDocComment (TypeContainer t, DeclSpace ds, Report r)
  18. {
  19. }
  20. internal static void GenerateDocComment (MemberCore mc, DeclSpace ds, Report r)
  21. {
  22. }
  23. public static string GetMethodDocCommentName (MemberCore mc, ParametersCompiled p, DeclSpace ds)
  24. {
  25. return "";
  26. }
  27. internal static void OnMethodGenerateDocComment (MethodCore mc, XmlElement el, Report r)
  28. {
  29. }
  30. public static void GenerateEnumDocComment (Enum e, DeclSpace ds)
  31. {
  32. }
  33. }
  34. public class Documentation
  35. {
  36. public Documentation (string xml_output_filename)
  37. {
  38. }
  39. public bool OutputDocComment (string asmfilename, Report r)
  40. {
  41. return true;
  42. }
  43. public void GenerateDocComment ()
  44. {
  45. }
  46. }
  47. }
  48. #endif