You've already forked linux-packaging-mono
Imported Upstream version 6.8.0.73
Former-commit-id: d18deab1b47cfd3ad8cba82b3f37d00eec2170af
This commit is contained in:
parent
bceda29824
commit
73ee7591e8
@@ -1,13 +1,6 @@
|
||||
//-----------------------------------------------------------------------------
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
//-----------------------------------------------------------------------------
|
||||
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||
|
||||
using System;
|
||||
|
||||
namespace Microsoft.Cci.Pdb {
|
||||
@@ -22,16 +15,21 @@ namespace Microsoft.Cci.Pdb {
|
||||
internal uint offset;
|
||||
internal uint length;
|
||||
|
||||
internal PdbScope(uint address, uint length, PdbSlot[] slots, PdbConstant[] constants, string[] usedNamespaces) {
|
||||
internal PdbScope(uint address, uint offset, uint length, PdbSlot[] slots, PdbConstant[] constants, string[] usedNamespaces) {
|
||||
this.constants = constants;
|
||||
this.slots = slots;
|
||||
this.scopes = new PdbScope[0];
|
||||
this.usedNamespaces = usedNamespaces;
|
||||
this.address = address;
|
||||
this.offset = 0;
|
||||
this.offset = offset;
|
||||
this.length = length;
|
||||
}
|
||||
|
||||
internal PdbScope(uint address, uint length, PdbSlot[] slots, PdbConstant[] constants, string[] usedNamespaces)
|
||||
: this(address, 0, length, slots, constants, usedNamespaces)
|
||||
{
|
||||
}
|
||||
|
||||
internal PdbScope(uint funcOffset, BlockSym32 block, BitAccess bits, out uint typind) {
|
||||
//this.segment = block.seg;
|
||||
this.address = block.off;
|
||||
|
||||
Reference in New Issue
Block a user