(index: TypeListIndex, ty: &InstanceType<'_>)
| 329 | |
| 330 | impl List { |
| 331 | pub(crate) fn from(index: TypeListIndex, ty: &InstanceType<'_>) -> Self { |
| 332 | List(Handle::new(index, ty)) |
| 333 | } |
| 334 | |
| 335 | /// Retrieve the element type of this `list`. |
| 336 | pub fn ty(&self) -> Type { |
nothing calls this directly
no test coverage detected