示例#1
0
        public bool VisitExprBooleanLt(ExprBooleanLt expr, TCtx arg)
        {
            var res = this.Visit(expr, "BooleanLt", arg, out var argOut) && this.Accept("Left", expr.Left, argOut) && this.Accept("Right", expr.Right, argOut);

            this._visitor.EndVisitExpr(expr, arg);
            return(res);
        }
示例#2
0
        public bool VisitExprBooleanLt(ExprBooleanLt booleanLt, IExpr?parent)
        {
            booleanLt.Left.Accept(this, booleanLt);
            this.Builder.Append('<');
            booleanLt.Right.Accept(this, booleanLt);

            return(true);
        }
示例#3
0
 public static ExprBooleanLt WithRight(this ExprBooleanLt original, ExprValue newRight)
 => new ExprBooleanLt(left: original.Left, right: newRight);