MCPcopy Create free account
hub / github.com/bytecodealliance/wasmtime / report

Method report

cranelift/codegen/src/verifier/mod.rs:211–213  ·  view source on GitHub ↗

Report an error, adding it to the list of errors.

(&mut self, error: impl Into<VerifierError>)

Source from the content-addressed store, hash-verified

209
210 /// Report an error, adding it to the list of errors.
211 pub fn report(&mut self, error: impl Into<VerifierError>) {
212 self.0.push(error.into());
213 }
214
215 /// Report a fatal error and return `Err`.
216 pub fn fatal(&mut self, error: impl Into<VerifierError>) -> VerifierStepResult {

Callers 14

fatalMethod · 0.45
nonfatalMethod · 0.45
verify_global_valuesMethod · 0.45
verify_alias_regionsMethod · 0.45
typecheckMethod · 0.45
typecheck_resultsMethod · 0.45
typecheck_fixed_argsMethod · 0.45
typecheck_tail_callMethod · 0.45

Calls 1

pushMethod · 0.45

Tested by

no test coverage detected