Line | |
---|
1 | //----------------------------------------------------------------------------- |
---|
2 | // |
---|
3 | // Copyright (C) Microsoft Corporation. All Rights Reserved. |
---|
4 | // |
---|
5 | //----------------------------------------------------------------------------- |
---|
6 | using System; |
---|
7 | |
---|
8 | namespace Microsoft.Cci.Pdb { |
---|
9 | internal struct PdbLine { |
---|
10 | internal uint offset; |
---|
11 | internal uint lineBegin; |
---|
12 | internal uint lineEnd; |
---|
13 | internal ushort colBegin; |
---|
14 | internal ushort colEnd; |
---|
15 | |
---|
16 | internal PdbLine(uint offset, uint lineBegin, ushort colBegin, uint lineEnd, ushort colEnd) { |
---|
17 | this.offset = offset; |
---|
18 | this.lineBegin = lineBegin; |
---|
19 | this.colBegin = colBegin; |
---|
20 | this.lineEnd = lineEnd; |
---|
21 | this.colEnd = colEnd; |
---|
22 | } |
---|
23 | } |
---|
24 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.