mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-25 14:41:32 +00:00
Deny missing docs in the clif backend crate
This commit is contained in:
@ -1,5 +1,10 @@
|
|||||||
|
//! The Wasmer Cranelift Backend crate is used to compile wasm binary code via parse events from the
|
||||||
|
//! Wasmer runtime common parser code into machine code.
|
||||||
|
//!
|
||||||
|
|
||||||
#![deny(
|
#![deny(
|
||||||
dead_code,
|
dead_code,
|
||||||
|
missing_docs,
|
||||||
nonstandard_style,
|
nonstandard_style,
|
||||||
unused_imports,
|
unused_imports,
|
||||||
unused_mut,
|
unused_mut,
|
||||||
@ -53,6 +58,8 @@ pub const VERSION: &str = env!("CARGO_PKG_VERSION");
|
|||||||
|
|
||||||
use wasmer_runtime_core::codegen::SimpleStreamingCompilerGen;
|
use wasmer_runtime_core::codegen::SimpleStreamingCompilerGen;
|
||||||
|
|
||||||
|
/// Streaming compiler implementation for the Cranelift backed. Compiles web assembly binary into
|
||||||
|
/// machine code.
|
||||||
pub type CraneliftCompiler = SimpleStreamingCompilerGen<
|
pub type CraneliftCompiler = SimpleStreamingCompilerGen<
|
||||||
code::CraneliftModuleCodeGenerator,
|
code::CraneliftModuleCodeGenerator,
|
||||||
code::CraneliftFunctionCodeGenerator,
|
code::CraneliftFunctionCodeGenerator,
|
||||||
|
Reference in New Issue
Block a user