public void Visit(ExpStmt expStmt)
 {
     expStmt.Exp.Accept(this);
     _sb.Append(";");
 }
 public void Visit(ExpStmt expStmt)
 {
     expStmt.Exp.Accept(this);
 }