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