1use super::context::JSContext; 2pub trait MacroTaskExtension { 3 fn tick(&mut self, ctx: &mut JSContext) -> Result<bool, String>; 4 fn has_pending(&self) -> bool; 5}