Don't print interns in docs gen error

This commit is contained in:
Richard Feldman 2022-12-22 04:42:17 -05:00
parent ec3bf22c9c
commit 56470dfb1b
No known key found for this signature in database
GPG key ID: F1F21AA5B1D9E43B

View file

@ -281,7 +281,10 @@ impl Interns {
Some(ident_ids) => match ident_ids.get_id(ident.as_str()) {
Some(ident_id) => Symbol::new(module_id, ident_id),
None => {
panic!("Interns::symbol could not find ident entry for {:?} for module {:?} in Interns {:?}", ident, module_id, self);
panic!(
"Interns::symbol could not find ident entry for {:?} for module {:?}",
ident, module_id
);
}
},
None => {