Merge pull request #5788 from roc-lang/revert

Revert "glue: find platform main file"
This commit is contained in:
Richard Feldman 2023-09-08 16:05:01 -04:00 committed by GitHub
commit a616b61503
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -340,6 +340,7 @@ pub fn load_types(
let function_kind = FunctionKind::LambdaSet;
let arena = &Bump::new();
let LoadedModule {
module_id: home,
mut can_problems,
mut type_problems,
mut declarations_by_id,
@ -371,13 +372,6 @@ pub fn load_types(
}
});
// find the platform's main module
let home = declarations_by_id
.keys()
.find(|id| format!("{id:?}").trim_start_matches("pf.").is_empty())
.copied()
.unwrap();
let decls = declarations_by_id.remove(&home).unwrap();
let subs = solved.inner_mut();