1 2 3 4 5 6 7 8
use crate::ts::TS; impl TS { pub fn clear(&mut self) -> &mut TS { self.stack.clear(); self.ensure() } }