(s *state, vx, vy reflect.Value)
| 329 | } |
| 330 | |
| 331 | func (tr *transformer) apply(s *state, vx, vy reflect.Value) { |
| 332 | step := Transform{&transform{pathStep{typ: tr.fnc.Type().Out(0)}, tr}} |
| 333 | vvx := s.callTRFunc(tr.fnc, vx, step) |
| 334 | vvy := s.callTRFunc(tr.fnc, vy, step) |
| 335 | step.vx, step.vy = vvx, vvy |
| 336 | s.compareAny(step) |
| 337 | } |
| 338 | |
| 339 | func (tr transformer) String() string { |
| 340 | return fmt.Sprintf("Transformer(%s, %s)", tr.name, function.NameOf(tr.fnc)) |
nothing calls this directly
no test coverage detected