swc_ecma_quote/
clone.rs

1//! Module for implicitly copyable types.
2
3/// Noop
4pub trait ImplicitClone: Clone {
5    fn clone_quote_var(&self) -> Self {
6        self.clone()
7    }
8}
9
10impl<T: Clone> ImplicitClone for T {}