3 instantiations of PdbScope
Mono.Cecil.Pdb (3)
Microsoft.Cci.Pdb\PdbFunction.cs (2)
272
scopes[0] = new
PdbScope
(this.address, proc.len, slots, constants, usedNamespaces);
319
scopes[scope++] = new
PdbScope
(this.address, block, bits, out slotToken);
Microsoft.Cci.Pdb\PdbScope.cs (1)
76
scopes[scope++] = new
PdbScope
(funcOffset, sub, bits, out typind);
15 references to PdbScope
Mono.Cecil.Pdb (15)
Microsoft.Cci.Pdb\PdbFunction.cs (5)
30
internal
PdbScope
[] scopes;
68
foreach (
PdbScope
scope in scopes)
78
private void AdjustVisualBasicScopes(
PdbScope
[] scopes)
80
foreach (
PdbScope
scope in scopes)
266
scopes = new
PdbScope
[scopeCount+scope];
Microsoft.Cci.Pdb\PdbScope.cs (3)
10
internal
PdbScope
[] scopes;
21
this.scopes = new
PdbScope
[0];
46
scopes = new
PdbScope
[scopeCount];
Mono.Cecil.Pdb\NativePdbReader.cs (7)
28
readonly Dictionary<
PdbScope
, ImportDebugInformation> imports = new Dictionary<
PdbScope
, ImportDebugInformation> ();
152
Collection<ScopeDebugInformation> ReadScopeAndLocals (
PdbScope
[] scopes, MethodDebugInformation info)
156
foreach (
PdbScope
scope in scopes)
163
ScopeDebugInformation ReadScopeAndLocals (
PdbScope
scope, MethodDebugInformation info)
239
var
scope = function.scopes [0];
250
static ImportDebugInformation GetImport (
PdbScope
scope, ModuleDefinition module)