Fix silent error in set_mangled_name

This commit is contained in:
Danila Fedorin 2020-09-18 12:02:37 -07:00
parent 77c9b27b26
commit 58c6421681
1 changed files with 6 additions and 5 deletions

View File

@ -34,12 +34,13 @@ bool type_env::is_global(const std::string& name) const {
void type_env::set_mangled_name(const std::string& name, const std::string& mangled) {
auto it = names.find(name);
if(it != names.end()) {
// Local names shouldn't need mangling.
assert(it->second.vis == visibility::global);
it->second.mangled_name = mangled;
}
// Can't set mangled name for non-existent variable.
assert(it != names.end());
// Local names shouldn't need mangling.
assert(it->second.vis == visibility::global);
it->second.mangled_name = mangled;
}
const std::string& type_env::get_mangled_name(const std::string& name) const {