ABT.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) {
            if (!cond.Type.IsScalar) {
                throw new InvalidProgramException();
            }
            this.Cond = cond;
            this.Body = body;
        }