()
| 294 | func (ta TypeAssertion) Type() reflect.Type { return ta.typ } |
| 295 | func (ta TypeAssertion) Values() (vx, vy reflect.Value) { return ta.vx, ta.vy } |
| 296 | func (ta TypeAssertion) String() string { return fmt.Sprintf(".(%v)", value.TypeString(ta.typ, false)) } |
| 297 | |
| 298 | // Transform is a [PathStep] that represents a transformation |
| 299 | // from the parent type to the current type. |
nothing calls this directly
no test coverage detected