mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
Stub out layout interners into own module
This commit is contained in:
parent
6bdab37541
commit
947158b17e
5 changed files with 25 additions and 19 deletions
6
crates/compiler/mono/src/layout/intern.rs
Normal file
6
crates/compiler/mono/src/layout/intern.rs
Normal file
|
@ -0,0 +1,6 @@
|
|||
use roc_intern::{SingleThreadedInterner, ThreadLocalInterner};
|
||||
|
||||
use super::Layout;
|
||||
|
||||
pub type TLLayoutInterner<'a> = ThreadLocalInterner<'a, Layout<'a>>;
|
||||
pub type STLayoutInterner<'a> = SingleThreadedInterner<'a, Layout<'a>>;
|
Loading…
Add table
Add a link
Reference in a new issue