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