1 write to _callGraph
ILCompiler.Compiler (1)
Compiler\Dataflow\CompilerGeneratedCallGraph.cs (1)
17
public CompilerGeneratedCallGraph() =>
_callGraph
= new Dictionary<TypeSystemEntity, HashSet<TypeSystemEntity>>();
3 references to _callGraph
ILCompiler.Compiler (3)
Compiler\Dataflow\CompilerGeneratedCallGraph.cs (3)
21
if (!
_callGraph
.TryGetValue(fromMember, out HashSet<TypeSystemEntity>? toMembers))
24
_callGraph
.Add(fromMember, toMembers);
62
if (!
_callGraph
.TryGetValue(method, out HashSet<TypeSystemEntity>? callees))