private void Resolve(Stmt stmt)
 {
     stmt.Accept(this);
 }
 private void Execute(Stmt stmt)
 {
     stmt.Accept(this);
 }