(self, s: &'static str)
| 207 | |
| 208 | #[allow(unused)] |
| 209 | pub fn intern_static(self, s: &'static str) -> InternedString<'gc> { |
| 210 | self.strings.intern_static(&self, s.as_bytes()) |
| 211 | } |
| 212 | } |
| 213 | |
| 214 | impl<'gc> ops::Deref for Context<'gc> { |
no test coverage detected