If Statement: if (cond) stmt; If cond is non-zero, stmt is executed. cond must be arithmetic or pointer type.
상속: Stmt
예제 #1
0
 public override void Visit(IfStmt stmt) =>
     stmt.stmt.Accept(this);
예제 #2
0
 public virtual void Visit(IfStmt stmt) {}