1 write to scopes
Mono.Cecil.Pdb (1)
Microsoft.Cci.Pdb\PdbFunction.cs (1)
266scopes = new PdbScope[scopeCount+scope];
10 references to scopes
Mono.Cecil.Pdb (10)
Microsoft.Cci.Pdb\PdbFunction.cs (3)
68foreach (PdbScope scope in scopes) 272scopes[0] = new PdbScope(this.address, proc.len, slots, constants, usedNamespaces); 319scopes[scope++] = new PdbScope(this.address, block, bits, out slotToken);
Mono.Cecil.Pdb\NativePdbReader.cs (7)
110 symbol.scope = !function.scopes.IsNullOrEmpty () 111 ? ReadScopeAndLocals (function.scopes [0], symbol) 117 if (function.scopes.Length > 1) { 118 for (int i = 1; i < function.scopes.Length; i++) { 119 var s = ReadScopeAndLocals (function.scopes [i], symbol); 236 if (function.scopes.Length != 1) 239 var scope = function.scopes [0];