mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 12:18:19 +00:00
Don't print interns in docs gen error
This commit is contained in:
parent
ec3bf22c9c
commit
56470dfb1b
1 changed files with 4 additions and 1 deletions
|
@ -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 => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue