AST.TypeCast.GetExpr C# (CSharp) Method

GetExpr() public method

public GetExpr ( ABT env ) : ABT.Expr
env ABT
return ABT.Expr
        public override ABT.Expr GetExpr(ABT.Env env) {
            ABT.ExprType type = Semant(this.TypeName.GetExprType, ref env);
            ABT.Expr expr = this.Expr.GetExpr(env);
            return ABT.TypeCast.MakeCast(expr, type);
        }
    }