Remove the parent method from type_env.

This commit is contained in:
Danila Fedorin 2020-09-17 22:35:12 -07:00
parent 8a352ed3ea
commit 7226d66f67
3 changed files with 1 additions and 6 deletions

View File

@ -54,7 +54,7 @@ void compiler::translate() {
}
for(auto& defn : global_defs.defs_defn) {
auto& function = defn.second->into_global(global_scp);
function.body->env->get_parent()->set_mangled_name(defn.first, function.name);
global_env->set_mangled_name(defn.first, function.name);
}
}

View File

@ -2,10 +2,6 @@
#include "type.hpp"
#include "error.hpp"
type_env_ptr type_env::get_parent() {
return parent;
}
void type_env::find_free(const type_mgr& mgr, std::set<std::string>& into) const {
if(parent != nullptr) parent->find_free(mgr, into);
for(auto& binding : names) {

View File

@ -31,7 +31,6 @@ class type_env {
type_env(type_env_ptr p) : parent(std::move(p)) {}
type_env() : type_env(nullptr) {}
type_env_ptr get_parent();
void find_free(const type_mgr& mgr, std::set<std::string>& into) const;
void find_free_except(const type_mgr& mgr, const group& avoid,
std::set<std::string>& into) const;