2014-08-13 10:39:27 +01:00
|
|
|
// Copyright (c) Microsoft. All rights reserved.
|
2019-12-10 18:00:56 +00:00
|
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
|
2014-08-13 10:39:27 +01:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Microsoft.Cci.Pdb {
|
|
|
|
internal class PdbLines {
|
|
|
|
internal PdbSource file;
|
|
|
|
internal PdbLine[] lines;
|
|
|
|
|
|
|
|
internal PdbLines(PdbSource file, uint count) {
|
|
|
|
this.file = file;
|
|
|
|
this.lines = new PdbLine[count];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|