cleanup pf.Task

This commit is contained in:
Anton-4 2024-09-16 18:12:20 +02:00 committed by GitHub
parent 38674aeb94
commit 4662c82ea8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 9 deletions

View file

@ -1258,13 +1258,13 @@ pub struct PlatformHeader<'a> {
#[derive(Copy, Clone, Debug, PartialEq)]
pub enum ImportsEntry<'a> {
/// e.g. `Task` or `Task.{ Task, after }`
/// e.g. `Hello` or `Hello exposing [hello]` see roc-lang.org/examples/MultipleRocFiles/README.html
Module(
ModuleName<'a>,
Collection<'a, Loc<Spaced<'a, ExposedName<'a>>>>,
),
/// e.g. `pf.Task` or `pf.Task.{ after }` or `pf.{ Task.{ Task, after } }`
/// e.g. `pf.Stdout` or `pf.Stdout exposing [line]`
Package(
&'a str,
ModuleName<'a>,