| 141 | /// buffers are transient and small — intern later if profiling says so). |
| 142 | #[derive(Default)] |
| 143 | pub struct Arena { |
| 144 | buf: Vec<u8>, |
| 145 | } |
| 146 | |
| 147 | impl Arena { |
| 148 | pub fn put(&mut self, s: &str) -> StrRef { |
nothing calls this directly
no outgoing calls
no test coverage detected