ABT.IfStmt.IfStmt C# (CSharp) Method

IfStmt() public method

public IfStmt ( Expr cond, Stmt stmt ) : System
cond Expr
stmt Stmt
return System
        public IfStmt(Expr cond, Stmt stmt) {
            this.Cond = cond;
            this.Stmt = stmt;
        }