Boo.Lang.Compiler.Steps.EmitAssembly.IsNull C# (CSharp) Method

IsNull() private static method

private static IsNull ( Expression expression ) : bool
expression Boo.Lang.Compiler.Ast.Expression
return bool
        private static bool IsNull(Expression expression)
        {
            return NodeType.NullLiteralExpression == expression.NodeType;
        }
EmitAssembly