AST.WhileStmt.WhileStmt C# (CSharp) Method

WhileStmt() public method

public WhileStmt ( Expr cond, Stmt body ) : System
cond Expr
body Stmt
return System
        public WhileStmt(Expr cond, Stmt body) {
            this.Cond = cond;
            this.Body = body;
        }