Stub out layout interners into own module

This commit is contained in:
Ayaz Hafiz 2023-01-03 10:07:12 -06:00
parent 6bdab37541
commit 947158b17e
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58
5 changed files with 25 additions and 19 deletions

View 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>>;