PdbLine.cs 959 B

1234567891011121314151617181920212223242526272829
  1. //-----------------------------------------------------------------------------
  2. //
  3. // Copyright (c) Microsoft. All rights reserved.
  4. // This code is licensed under the Microsoft Public License.
  5. // THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
  6. // ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
  7. // IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
  8. // PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
  9. //
  10. //-----------------------------------------------------------------------------
  11. using System;
  12. namespace Microsoft.Cci.Pdb {
  13. internal struct PdbLine {
  14. internal uint offset;
  15. internal uint lineBegin;
  16. internal uint lineEnd;
  17. internal ushort colBegin;
  18. internal ushort colEnd;
  19. internal PdbLine(uint offset, uint lineBegin, ushort colBegin, uint lineEnd, ushort colEnd) {
  20. this.offset = offset;
  21. this.lineBegin = lineBegin;
  22. this.colBegin = colBegin;
  23. this.lineEnd = lineEnd;
  24. this.colEnd = colEnd;
  25. }
  26. }
  27. }