mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-02 03:12:20 +00:00
Merge pull request #3532 from rtfeldman/3504
Wrap opaque types in the repl with the appropriate opaque wrapper
This commit is contained in:
commit
cab1ec0be5
6 changed files with 30 additions and 8 deletions
|
@ -249,7 +249,7 @@ lazy_static! {
|
|||
std::sync::Mutex::new(roc_collections::SmallStringInterner::with_capacity(10));
|
||||
}
|
||||
|
||||
#[derive(Debug, Default)]
|
||||
#[derive(Debug, Default, Clone)]
|
||||
pub struct Interns {
|
||||
pub module_ids: ModuleIds,
|
||||
pub all_ident_ids: IdentIdsByModule,
|
||||
|
@ -663,7 +663,7 @@ impl IdentIds {
|
|||
}
|
||||
}
|
||||
|
||||
#[derive(Debug, Default)]
|
||||
#[derive(Debug, Default, Clone)]
|
||||
pub struct IdentIdsByModule(VecMap<ModuleId, IdentIds>);
|
||||
|
||||
impl IdentIdsByModule {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue