pub mod rust;
#[cfg(feature = "typescript-ast")]
pub mod typescript;
#[cfg(feature = "typescript-ast")]
pub mod javascript;
#[cfg(feature = "python-ast")]
pub mod python;
#[cfg(feature = "c-ast")]
pub mod c;
#[cfg(feature = "cpp-ast")]
pub mod cpp;
#[cfg(any(feature = "c-ast", feature = "cpp-ast"))]
pub mod c_cpp_strategy;
#[cfg(feature = "kotlin-ast")]
pub mod kotlin_strategy;
#[cfg_attr(coverage_nightly, coverage(off))]
#[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);
}
}
}