| 204 | #[derive(Collect)] |
| 205 | #[collect(no_drop)] |
| 206 | pub struct Class<'gc> { |
| 207 | pub name: InternedString<'gc>, |
| 208 | pub methods: HashMap<InternedString<'gc>, Value<'gc>, BuildHasherDefault<AHasher>>, |
| 209 | pub static_methods: HashMap<InternedString<'gc>, Value<'gc>, BuildHasherDefault<AHasher>>, |
| 210 | } |
| 211 | |
| 212 | #[derive(Collect)] |
| 213 | #[collect(no_drop)] |
no outgoing calls
no test coverage detected