Boo.Lang.Compiler.TypeSystem.TypeSystemServices.IsCallableType C# (CSharp) Method

IsCallableType() private method

private IsCallableType ( IType type ) : bool
type IType
return bool
        private bool IsCallableType(IType type)
        {
            return (IsAssignableFrom(ICallableType, type)) || (type is ICallableType);
        }
TypeSystemServices