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

IsDuckTyped() public method

public IsDuckTyped ( Expression expression ) : bool
expression Boo.Lang.Compiler.Ast.Expression
return bool
        public virtual bool IsDuckTyped(Expression expression)
        {
            IType type = expression.ExpressionType;
            return type != null && IsDuckType(type);
        }
TypeSystemServices