Do-while Stmt do { body } while (cond); cond must be of scalar type
Inheritance: Stmt
Exemplo n.º 1
0
 public override void Visit(DoWhileStmt stmt) =>
     stmt.body.Accept(this);
Exemplo n.º 2
0
 public virtual void Visit(DoWhileStmt stmt) {}