2 writes to _gvmImplementations
ILCompiler.Compiler (2)
Compiler\DependencyAnalysis\GenericVirtualMethodTableNode.cs (2)
25
_gvmImplementations
= new Dictionary<MethodDesc, Dictionary<TypeDesc, MethodDesc>>();
130
_gvmImplementations
= null;
4 references to _gvmImplementations
ILCompiler.Compiler (4)
Compiler\DependencyAnalysis\GenericVirtualMethodTableNode.cs (4)
69
if (!
_gvmImplementations
.ContainsKey(openCallingMethod))
70
_gvmImplementations
[openCallingMethod] = new Dictionary<TypeDesc, MethodDesc>();
72
_gvmImplementations
[openCallingMethod][openImplementationMethod.OwningType] = openImplementationMethod;
100
foreach (var gvmEntry in
_gvmImplementations
)