pub trait Check<'db> {
// Required method
fn check(&self, db: &'db dyn Db);
}Expand description
The main “check” routine. This defines what it means for a dada program to successfully compile.
pub trait Check<'db> {
// Required method
fn check(&self, db: &'db dyn Db);
}The main “check” routine. This defines what it means for a dada program to successfully compile.