Remove requires type from the provides field

This commit is contained in:
Brendan Hansknecht 2024-10-06 17:42:39 -07:00
parent bdb6651c13
commit c61b7bf2a6
No known key found for this signature in database
GPG key ID: A199D0660F95F948
3 changed files with 7 additions and 13 deletions

View file

@ -954,7 +954,7 @@ pub enum HeaderType<'a> {
opt_app_module_id: Option<ModuleId>,
/// the name and type scheme of the main function (required by the platform)
/// (type scheme is currently unused)
provides: &'a [(Loc<ExposedName<'a>>, Loc<TypedIdent<'a>>)],
provides: &'a [Loc<ExposedName<'a>>],
requires: &'a [Loc<TypedIdent<'a>>],
requires_types: &'a [Loc<UppercaseIdent<'a>>],
exposes: &'a [Loc<ModuleName<'a>>],