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 PdbTokenLine {
|
|
|
|
internal uint token;
|
|
|
|
internal uint file_id;
|
|
|
|
internal uint line;
|
|
|
|
internal uint column;
|
|
|
|
internal uint endLine;
|
|
|
|
internal uint endColumn;
|
|
|
|
internal PdbSource sourceFile;
|
|
|
|
internal PdbTokenLine/*?*/ nextLine;
|
|
|
|
|
|
|
|
internal PdbTokenLine(uint token, uint file_id, uint line, uint column, uint endLine, uint endColumn) {
|
|
|
|
this.token = token;
|
|
|
|
this.file_id = file_id;
|
|
|
|
this.line = line;
|
|
|
|
this.column = column;
|
|
|
|
this.endLine = endLine;
|
|
|
|
this.endColumn = endColumn;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|