SymbolDocumentWriterImpl.cs 895 B

123456789101112131415161718192021222324252627282930313233
  1. //using System;
  2. //using System.Diagnostics.SymbolStore;
  3. //namespace Mono.CompilerServices.SymbolWriter
  4. //{
  5. // internal class SymbolDocumentWriterImpl : ISymbolDocumentWriter, ISourceFile, ICompileUnit
  6. // {
  7. // private CompileUnitEntry comp_unit;
  8. // SourceFileEntry ISourceFile.Entry
  9. // {
  10. // get
  11. // {
  12. // return this.comp_unit.SourceFile;
  13. // }
  14. // }
  15. // public CompileUnitEntry Entry
  16. // {
  17. // get
  18. // {
  19. // return this.comp_unit;
  20. // }
  21. // }
  22. // public SymbolDocumentWriterImpl(CompileUnitEntry comp_unit)
  23. // {
  24. // this.comp_unit = comp_unit;
  25. // }
  26. // public void SetCheckSum(Guid algorithmId, byte[] checkSum)
  27. // {
  28. // }
  29. // public void SetSource(byte[] source)
  30. // {
  31. // }
  32. // }
  33. //}