1 instantiation of MethodILKey
ILCompiler.Compiler (1)
Compiler\DependencyAnalysis\NodeFactory.cs (1)
909
return _dataflowAnalyzedMethods.GetOrAdd(new
MethodILKey
(methodIL));
6 references to MethodILKey
ILCompiler.Compiler (6)
Compiler\DependencyAnalysis\NodeFactory.cs (6)
485
_dataflowAnalyzedMethods = new NodeCache<
MethodILKey
, DataflowAnalyzedMethodNode>((
MethodILKey
il) =>
905
private NodeCache<
MethodILKey
, DataflowAnalyzedMethodNode> _dataflowAnalyzedMethods;
1833
private struct MethodILKey : IEquatable<
MethodILKey
>
1838
public override bool Equals(object obj) => obj is
MethodILKey
other && Equals(other);
1839
public bool Equals(
MethodILKey
other) => other.MethodIL.OwningMethod == this.MethodIL.OwningMethod;