Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

25 lines
704 B
C#

//-----------------------------------------------------------------------------
//
// Copyright (C) Microsoft Corporation. All Rights Reserved.
//
//-----------------------------------------------------------------------------
using System;
namespace Microsoft.Cci.Pdb {
internal struct PdbLine {
internal uint offset;
internal uint lineBegin;
internal uint lineEnd;
internal ushort colBegin;
internal ushort colEnd;
internal PdbLine(uint offset, uint lineBegin, ushort colBegin, uint lineEnd, ushort colEnd) {
this.offset = offset;
this.lineBegin = lineBegin;
this.colBegin = colBegin;
this.lineEnd = lineEnd;
this.colEnd = colEnd;
}
}
}