//! Trait-bridge helpers for the Kotlin JVM backend.
//!
//! Handles detection of functions whose signatures involve trait types, which
//! must be excluded from the Kotlin wrapper (the Java facade handles trait
//! registration via a separate interface).
use TypeRef;
/// Returns `true` if the type reference, recursively, includes any name in the
/// supplied set. Used by the Kotlin/Java wrappers to skip functions whose
/// signature touches trait types (the Java facade doesn't expose those).
pub