Imported Upstream version 5.0.0.42

Former-commit-id: fd56571888259555122d8a0f58c68838229cea2b
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2017-04-10 11:41:01 +00:00
parent 1190d13a04
commit 6bdd276d05
19939 changed files with 3099680 additions and 93811 deletions

View File

@@ -0,0 +1,33 @@
//-----------------------------------------------------------------------------
//
// Copyright (c) Microsoft. All rights reserved.
// This code is licensed under the Microsoft Public License.
// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
//
//-----------------------------------------------------------------------------
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;
}
}
}