Trait move_model::simplifier::SpecRewriter
source · [−]pub trait SpecRewriter {
fn rewrite_module_spec(
&mut self,
_env: &GlobalEnv,
_module_id: ModuleId,
_spec: &Spec
) -> Result<Option<Spec>> { ... }
fn rewrite_function_spec(
&mut self,
_env: &GlobalEnv,
_fun_id: QualifiedId<FunId>,
_spec: &Spec
) -> Result<Option<Spec>> { ... }
fn rewrite_inline_spec(
&mut self,
_env: &GlobalEnv,
_fun_id: QualifiedId<FunId>,
_code_offset: CodeOffset,
_spec: &Spec
) -> Result<Option<Spec>> { ... }
fn override_with_rewrite(&mut self, env: &mut GlobalEnv) -> Result<()> { ... }
}
Expand description
A generic trait for rewriting the specifications in the GlobalEnv
. A rewriter is expected to
implement at least one rewrite_*
function, depending on which type(s) of specs the rewriter
targets. All the rewrite_*
function should follow the convention on return value:
Ok(None)
–> nothing to rewrite on this specOk(Some(new_spec))
–> the spec is re-written and thenew_spec
is the outputErr(..)
–> something wrong (invariant violation) happened in the rewriting
Provided methods
Rewrite a module-level specification
fn rewrite_function_spec(
&mut self,
_env: &GlobalEnv,
_fun_id: QualifiedId<FunId>,
_spec: &Spec
) -> Result<Option<Spec>>
fn rewrite_function_spec(
&mut self,
_env: &GlobalEnv,
_fun_id: QualifiedId<FunId>,
_spec: &Spec
) -> Result<Option<Spec>>
Rewrite a function-level specification
fn rewrite_inline_spec(
&mut self,
_env: &GlobalEnv,
_fun_id: QualifiedId<FunId>,
_code_offset: CodeOffset,
_spec: &Spec
) -> Result<Option<Spec>>
fn rewrite_inline_spec(
&mut self,
_env: &GlobalEnv,
_fun_id: QualifiedId<FunId>,
_code_offset: CodeOffset,
_spec: &Spec
) -> Result<Option<Spec>>
Rewrite a code-level specification
fn override_with_rewrite(&mut self, env: &mut GlobalEnv) -> Result<()>
fn override_with_rewrite(&mut self, env: &mut GlobalEnv) -> Result<()>
Iterate over the specs in the GlobalEnv
, rewrite each spec, and apply changes back to the
GlobalEnv
.