mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-15 08:15:07 +00:00
Expose set and representation to crate
This commit is contained in:
parent
4dbe90db93
commit
ce61386d0a
1 changed files with 2 additions and 2 deletions
|
@ -1254,9 +1254,9 @@ impl<'a> LambdaName<'a> {
|
||||||
#[derive(Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)]
|
#[derive(Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)]
|
||||||
pub struct LambdaSet<'a> {
|
pub struct LambdaSet<'a> {
|
||||||
/// collection of function names and their closure arguments
|
/// collection of function names and their closure arguments
|
||||||
set: &'a [(Symbol, &'a [Layout<'a>])],
|
pub(crate) set: &'a [(Symbol, &'a [Layout<'a>])],
|
||||||
/// how the closure will be represented at runtime
|
/// how the closure will be represented at runtime
|
||||||
representation: Interned<Layout<'a>>,
|
pub(crate) representation: Interned<Layout<'a>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue