Remove todo on ingested file handling

This commit is contained in:
Agus Zubiaga 2024-04-21 10:13:26 -03:00
parent 1b3c16e517
commit e5789158e5
No known key found for this signature in database

View file

@ -3123,10 +3123,9 @@ fn to_pending_value_def<'a>(
let typed_ident = ingested_file.name.item.extract_spaces().item;
let body_pattern = env
.arena
.alloc(typed_ident.ident.map_owned(|ident|
.alloc(typed_ident.ident.map_owned(|ident|
ast::Pattern::Identifier {
ident,
// Agus TODO: check this
ident,
suffixed: 0
}
));