mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 22:34:45 +00:00
more comments
This commit is contained in:
parent
61b4ee054a
commit
523032c6c9
3 changed files with 27 additions and 5 deletions
|
@ -227,7 +227,10 @@ enum Work<'a> {
|
|||
rank: Rank,
|
||||
let_con: &'a LetConstraint,
|
||||
|
||||
/// Used for imports
|
||||
/// The variables used to store imported types in the Subs.
|
||||
/// The `Contents` are copied from the source module, but to
|
||||
/// mimic `type_to_var`, we must add these variables to `Pools`
|
||||
/// at the correct rank
|
||||
pool_variables: &'a [Variable],
|
||||
},
|
||||
/// The ret_con part of a let constraint that introduces rigid and/or flex variables
|
||||
|
@ -239,7 +242,10 @@ enum Work<'a> {
|
|||
rank: Rank,
|
||||
let_con: &'a LetConstraint,
|
||||
|
||||
/// Used for imports
|
||||
/// The variables used to store imported types in the Subs.
|
||||
/// The `Contents` are copied from the source module, but to
|
||||
/// mimic `type_to_var`, we must add these variables to `Pools`
|
||||
/// at the correct rank
|
||||
pool_variables: &'a [Variable],
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue