#![cfg_attr(coverage_nightly, coverage(off))]
pub mod assemblyscript;
#[cfg(test)]
pub mod assemblyscript_property_tests;
pub mod binary;
#[cfg(test)]
pub mod binary_property_tests;
pub mod complexity;
#[cfg(test)]
pub mod complexity_property_tests;
#[cfg(test)]
pub mod coverage_tests;
pub mod error;
#[cfg(test)]
pub mod integration_tests;
pub mod language_detection;
pub mod memory_pool;
pub mod parallel;
pub mod security;
#[cfg(test)]
pub mod security_property_tests;
#[cfg(test)]
pub mod tests;
pub mod traits;
pub mod types;
pub mod wat;
#[cfg(test)]
pub mod wat_property_tests;
pub use self::assemblyscript::AssemblyScriptParser;
pub use self::binary::WasmBinaryAnalyzer;
pub use self::error::{WasmError, WasmResult};
pub use self::language_detection::WasmLanguageDetector;
pub use self::traits::{WasmAnalysisCapabilities, WasmAwareParser};
pub use self::types::{MemoryOpStats, WasmComplexity, WasmMetrics, WebAssemblyVariant};
pub use self::wat::WatParser;
pub use self::complexity::WasmComplexityAnalyzer;
pub use self::security::WasmSecurityValidator;
#[cfg(test)]
mod property_tests {
use proptest::prelude::*;
proptest! {
#[test]
fn basic_property_stability(_input in ".*") {
prop_assert!(true);
}
#[test]
fn module_consistency_check(_x in 0u32..1000) {
prop_assert!(_x < 1001);
}
}
}