SourceLocationProvider.cs 653 B

1234567891011121314151617181920212223242526272829
  1. // Copyright (c) Microsoft. All rights reserved.
  2. // Licensed under the MIT license. See LICENSE file in the project root for full license information.
  3. using System;
  4. using System.Collections.Generic;
  5. using System.IO;
  6. #pragma warning disable 1591 // TODO: doc comments
  7. namespace Microsoft.Cci.Pdb {
  8. internal sealed class PdbIteratorScope : ILocalScope {
  9. internal PdbIteratorScope(uint offset, uint length) {
  10. this.offset = offset;
  11. this.length = length;
  12. }
  13. public uint Offset {
  14. get { return this.offset; }
  15. }
  16. uint offset;
  17. public uint Length {
  18. get { return this.length; }
  19. }
  20. uint length;
  21. }
  22. }