(e Elem, tp GenericTypeParams)
| 331 | } |
| 332 | |
| 333 | func setTypeParams(e Elem, tp GenericTypeParams) { |
| 334 | if e == nil { |
| 335 | return |
| 336 | } |
| 337 | tp.isPtr = false |
| 338 | e.SetTypeParams(tp) |
| 339 | } |
| 340 | |
| 341 | func (m *marshalGen) gPtr(p *Ptr) { |
| 342 | if !m.p.ok() { |
no test coverage detected
searching dependent graphs…