3 overrides of GetMethod
ILCompiler.TypeSystem (3)
parent\parent\Common\TypeSystem\Common\InstantiatedType.cs (1)
164
public override MethodDesc
GetMethod
(Utf8Span name, MethodSignature signature, Instantiation substitution)
parent\parent\Common\TypeSystem\Ecma\EcmaType.cs (1)
322
public override EcmaMethod
GetMethod
(Utf8Span name, MethodSignature signature, Instantiation substitution)
parent\parent\Common\TypeSystem\RuntimeDetermined\RuntimeDeterminedType.cs (1)
128
public override MethodDesc
GetMethod
(Utf8Span name, MethodSignature signature, Instantiation substitution)
4 references to GetMethod
ILCompiler.TypeSystem (4)
parent\parent\Common\TypeSystem\Common\InstantiatedType.cs (1)
166
MethodDesc typicalMethodDef = _typeDef.
GetMethod
(name, signature, substitution);
parent\parent\Common\TypeSystem\Common\TypeDesc.cs (1)
527
return
GetMethod
(name, signature, default(Instantiation));
parent\parent\Common\TypeSystem\Ecma\EcmaModule.cs (1)
622
MethodDesc method = typeDescToInspect.
GetMethod
(name, sig, substitution);
parent\parent\Common\TypeSystem\RuntimeDetermined\RuntimeDeterminedType.cs (1)
130
MethodDesc method = _rawCanonType.
GetMethod
(name, signature, substitution);