3 instantiations of PdbScope
Mono.Cecil.Pdb (3)
Microsoft.Cci.Pdb\PdbFunction.cs (2)
272scopes[0] = new PdbScope(this.address, proc.len, slots, constants, usedNamespaces); 319scopes[scope++] = new PdbScope(this.address, block, bits, out slotToken);
Microsoft.Cci.Pdb\PdbScope.cs (1)
76scopes[scope++] = new PdbScope(funcOffset, sub, bits, out typind);
15 references to PdbScope
Mono.Cecil.Pdb (15)
Microsoft.Cci.Pdb\PdbFunction.cs (5)
30internal PdbScope[] scopes; 68foreach (PdbScope scope in scopes) 78private void AdjustVisualBasicScopes(PdbScope[] scopes) 80foreach (PdbScope scope in scopes) 266scopes = new PdbScope[scopeCount+scope];
Microsoft.Cci.Pdb\PdbScope.cs (3)
10internal PdbScope[] scopes; 21this.scopes = new PdbScope[0]; 46scopes = 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)