Use specialize_all

This commit is contained in:
Richard Feldman 2020-05-21 22:09:11 -04:00
parent 639c132ce0
commit 42e3d35564
4 changed files with 81 additions and 47 deletions

View file

@ -58,7 +58,7 @@ impl Symbol {
.get_name(self.module_id())
.unwrap_or_else(|| {
panic!(
"module_string could not find IdentIds for {:?} in interns {:?}",
"module_string could not find IdentIds for module {:?} in {:?}",
self.module_id(),
interns
)
@ -71,7 +71,7 @@ impl Symbol {
.get(&self.module_id())
.unwrap_or_else(|| {
panic!(
"ident_string could not find IdentIds for {:?} in interns {:?}",
"ident_string could not find IdentIds for module {:?} in {:?}",
self.module_id(),
interns
)