示例#1
0
        public override bool Equals(ExpressionNode other)
        {
            if (!(other is CallRedisMethodNode))
            {
                return(false);
            }
            var callMethod = (CallRedisMethodNode)other;

            return(Method.EqualOrNull(callMethod.Method) &&
                   Caller.EqualOrNull(callMethod.Caller) &&
                   Arguments.AllEqual(callMethod.Arguments));
        }