salsa/examples/hello_world/compiler.rs
Niko Matsakis 2e40e9d1e5 rename BaseQueryContext to just QueryContext
And use it like `salsa::QueryContext` elsewhere.
2018-09-29 05:34:29 -04:00

7 lines
141 B
Rust

pub trait CompilerQueryContext: salsa::QueryContext {
fn interner(&self) -> &Interner;
}
#[derive(Clone, Default)]
pub struct Interner;