(&mut self, s: &[u8])
| 253 | } |
| 254 | |
| 255 | pub fn intern(&mut self, s: &[u8]) -> InternedString<'gc> { |
| 256 | self.strings.intern(self.mc, s) |
| 257 | } |
| 258 | |
| 259 | pub fn intern_static(&mut self, s: &'static str) -> InternedString<'gc> { |
| 260 | self.strings.intern_static(self.mc, s.as_bytes()) |
no outgoing calls
no test coverage detected