mirror of
https://github.com/salsa-rs/salsa.git
synced 2024-12-03 21:08:33 +00:00
6 lines
133 B
Rust
6 lines
133 B
Rust
pub trait CompilerDatabase: salsa::Database {
|
|
fn interner(&self) -> &Interner;
|
|
}
|
|
|
|
#[derive(Clone, Default)]
|
|
pub struct Interner;
|