pub trait TransformPass: Sync {
// Required method
fn transform_ctx(&self, ctx: &mut TransformCtx<'_>);
// Provided method
fn name(&self) -> &str { ... }
}
Expand description
A pass that transforms the crate data.
pub trait TransformPass: Sync {
// Required method
fn transform_ctx(&self, ctx: &mut TransformCtx<'_>);
// Provided method
fn name(&self) -> &str { ... }
}
A pass that transforms the crate data.