2 writes to anonymous_scopes
Mono.Cecil.Mdb (2)
Mono.CompilerServices.SymbolWriter\MonoSymbolFile.cs (2)
177 anonymous_scopes = new Dictionary<int, AnonymousScopeEntry> (); 604 anonymous_scopes = new Dictionary<int, AnonymousScopeEntry> ();
12 references to anonymous_scopes
Mono.Cecil.Mdb (12)
Mono.CompilerServices.SymbolWriter\MonoSymbolFile.cs (12)
176 if (anonymous_scopes == null) 179 anonymous_scopes.Add (id, new AnonymousScopeEntry (id)); 188 AnonymousScopeEntry scope = anonymous_scopes [scope_id]; 197 AnonymousScopeEntry scope = anonymous_scopes [scope_id]; 284 ot.AnonymousScopeCount = anonymous_scopes != null ? anonymous_scopes.Count : 0; 286 if (anonymous_scopes != null) { 287 foreach (AnonymousScopeEntry scope in anonymous_scopes.Values) 599 if (anonymous_scopes != null) { 600 anonymous_scopes.TryGetValue (id, out scope); 608 anonymous_scopes.Add (scope.ID, scope); 611 return anonymous_scopes [id];