1 2 3 4 5 6 7 8 9
use std::{ cell::{ RefCell, }, }; thread_local!{ pub(crate) static REPLACE_EXPRS: RefCell<Option<Vec<(String, String)>>> = RefCell::new(None); }