salsa/examples/hello_world/compiler.rs

7 lines
145 B
Rust
Raw Normal View History

2018-09-28 15:26:53 +00:00
pub trait CompilerQueryContext: salsa::BaseQueryContext {
fn interner(&self) -> &Interner;
}
2018-09-28 15:40:20 +00:00
#[derive(Clone, Default)]
2018-09-28 15:26:53 +00:00
pub struct Interner;