use crate::*;
/// Scheduling flag to batch signal updates within a single tick.
pub static SCHEDULED: AtomicBool = new;
/// Suppress flag to prevent `schedule_signal_update()` from dispatching
/// during internal operations such as `watch!` initialisation.
pub static SUPPRESS_SCHEDULE: AtomicBool = new;
/// The currently active `HookContext`.
pub static mut CURRENT_HOOK_CONTEXT: CurrentHookContextCell =
CurrentHookContextCell;