Ejemplo n.º 1
0
        public bool VisitExprUnsafeValue(ExprUnsafeValue expr, TCtx arg)
        {
            var res = this.Visit(expr, "UnsafeValue", arg, out var argOut);

            this.VisitPlainProperty("UnsafeValue", expr.UnsafeValue, argOut);
            this._visitor.EndVisitExpr(expr, arg);
            return(res);
        }
Ejemplo n.º 2
0
 public static ExprUnsafeValue WithUnsafeValue(this ExprUnsafeValue original, String newUnsafeValue)
 => new ExprUnsafeValue(unsafeValue: newUnsafeValue);
Ejemplo n.º 3
0
 public bool VisitExprUnsafeValue(ExprUnsafeValue exprUnsafeValue, IExpr?parent)
 {
     this.Builder.Append(exprUnsafeValue.UnsafeValue);
     return(true);
 }
Ejemplo n.º 4
0
 public TRes VisitExprUnsafeValue(ExprUnsafeValue exprUnsafeValue, ExprValueTypeAnalyzerCtx <TRes, TCtx> ctx)
 {
     return(ctx.ValueVisitor.VisitAny(ctx.Ctx, null));
 }