Example #1
0
        public bool VisitExprTypeInt64(ExprTypeInt64 expr, TCtx arg)
        {
            var res = this.Visit(expr, "TypeInt64", arg, out var argOut);

            this._visitor.EndVisitExpr(expr, arg);
            return(res);
        }
Example #2
0
 public abstract bool VisitExprTypeInt64(ExprTypeInt64 exprTypeInt64, IExpr?parent);
Example #3
0
 public override bool VisitExprTypeInt64(ExprTypeInt64 exprTypeInt64, IExpr?parent)
 {
     this.Builder.Append("bigint");
     return(true);
 }
 TRes IExprTypeVisitor <TRes, ExprValueTypeAnalyzerCtx <TRes, TCtx> > .VisitExprTypeInt64(ExprTypeInt64 exprTypeInt64, ExprValueTypeAnalyzerCtx <TRes, TCtx> ctx)
 {
     return(ctx.ValueVisitor.VisitInt64(ctx.Ctx, null));
 }