Boo.Lang.Runtime.SliceDispatcherFactory.EmitMethodDispatcher C# (CSharp) Method

EmitMethodDispatcher() private method

private EmitMethodDispatcher ( IEnumerable candidates ) : Dispatcher
candidates IEnumerable
return Dispatcher
        private Dispatcher EmitMethodDispatcher(IEnumerable<MethodInfo> candidates)
        {
            CandidateMethod method = ResolveMethod(GetArgumentTypes(), candidates);
            if (null == method) throw MissingField();

            return new MethodDispatcherEmitter(_type, method, GetArgumentTypes()).Emit();
        }

Same methods

SliceDispatcherFactory::EmitMethodDispatcher ( MethodInfo candidate ) : Dispatcher