()
| 390 | } |
| 391 | |
| 392 | func (call navigableCallImpl) Target() Expr { |
| 393 | t := call.Expr.AsCall().Target() |
| 394 | if t != nil { |
| 395 | return call.createChild(t) |
| 396 | } |
| 397 | return nil |
| 398 | } |
| 399 | |
| 400 | func (call navigableCallImpl) Args() []Expr { |
| 401 | args := call.Expr.AsCall().Args() |
nothing calls this directly
no test coverage detected