//! Shared registry module for Pasta transpilers.
//!
//! This module contains registry components shared between transpiler and transpiler2.
//! Both modules use the same SceneRegistry and WordDefRegistry for scene/word management.
//!
//! # Design
//!
//! - SceneRegistry: Tracks scenes and assigns unique IDs during transpilation (Pass 1)
//! - WordDefRegistry: Tracks word definitions during transpilation (Pass 1)
//! - SceneTable: Runtime lookup table for scenes (built from SceneRegistry)
//! - WordTable: Runtime lookup table for words (built from WordDefRegistry)
//! - RandomSelector: Language-agnostic random selection trait
pub use ;
pub use ;
pub use SceneTable;
pub use ;
pub use ;
pub use ;