Remove references to Package-Config.roc

Instead, refer to these as `platform` modules
This commit is contained in:
Richard Feldman 2022-06-15 11:12:52 -04:00
parent 9d3087ce23
commit 33230c506f
No known key found for this signature in database
GPG key ID: 7E4127D1E4241798
4 changed files with 23 additions and 23 deletions

View file

@ -22,7 +22,7 @@ pub enum HeaderFor<'a> {
Builtin {
generates_with: &'a [Symbol],
},
PkgConfig {
Platform {
/// usually `pf`
config_shorthand: &'a str,
/// the type scheme of the main function (required by the platform)
@ -80,7 +80,7 @@ pub enum ModuleNameEnum<'a> {
App(StrLiteral<'a>),
Interface(ModuleName<'a>),
Hosted(ModuleName<'a>),
PkgConfig,
Platform,
}
#[derive(Copy, Clone, PartialEq, Eq, Debug, Hash)]