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

ProduceExtensionDispatcher() private method

private ProduceExtensionDispatcher ( ) : Dispatcher
return Dispatcher
        private Dispatcher ProduceExtensionDispatcher()
        {
            CandidateMethod found = ResolveExtensionMethod();
            if (found == null) throw new System.MissingMethodException(_type.FullName, _name);
            return EmitExtensionDispatcher(found);
        }