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

EmitMethodDispatcher() private method

private EmitMethodDispatcher ( CandidateMethod found, Type argumentTypes ) : Dispatcher
found CandidateMethod
argumentTypes System.Type
return Dispatcher
        private Dispatcher EmitMethodDispatcher(CandidateMethod found, Type[] argumentTypes)
        {
            return new MethodDispatcherEmitter(_type, found, argumentTypes).Emit();
        }