TypeMapper
| 20 | // TypeMapper |
| 21 | |
| 22 | type TypeMapper struct { |
| 23 | data TypeMapperData |
| 24 | } |
| 25 | |
| 26 | func (m *TypeMapper) Map(t *Type) *Type { return m.data.Map(t) } |
| 27 | func (m *TypeMapper) Kind() TypeMapperKind { return m.data.Kind() } |
nothing calls this directly
no outgoing calls
no test coverage detected