Do-while Stmt do { body } while (cond); cond must be of scalar type
상속: Stmt
예제 #1
0
 public override void Visit(DoWhileStmt stmt) =>
     stmt.body.Accept(this);
예제 #2
0
 public virtual void Visit(DoWhileStmt stmt) {}