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

IsUnknown() public static method

public static IsUnknown ( Expression node ) : bool
node Boo.Lang.Compiler.Ast.Expression
return bool
        public static bool IsUnknown(Expression node)
        {
            var type = node.ExpressionType;
            return null != type && IsUnknown(type);
        }

Same methods

TypeSystemServices::IsUnknown ( IType type ) : bool
TypeSystemServices