Boo.Lang.Compiler.TypeSystem.AnonymousCallableType.AnonymousCallableType C# (CSharp) Method

AnonymousCallableType() private method

private AnonymousCallableType ( TypeSystemServices services, CallableSignature signature ) : System
services TypeSystemServices
signature CallableSignature
return System
        internal AnonymousCallableType(TypeSystemServices services, CallableSignature signature)
        {
            if (null == services)
            {
                throw new ArgumentNullException("services");
            }
            if (null == signature)
            {
                throw new ArgumentNullException("signature");
            }
            _typeSystemServices = services;
            _signature = signature;
        }