@Override
 public List<Error> visit(MethodDecl m) {
   if (!m.ifExtern()) {
     this.visit(m.getBlock());
   }
   return this.getErrors();
 }