(f string, a Args, s string, l int)
| 379 | } |
| 380 | |
| 381 | func newCall(f string, a Args, s string, l int) Call { |
| 382 | c := Call{Func: newFunc(f), Args: a} |
| 383 | c.init(s, l) |
| 384 | return c |
| 385 | } |
| 386 | |
| 387 | func newCallLocal(f string, a Args, s string, l int) Call { |
| 388 | c := newCall(f, a, s, l) |
no test coverage detected
searching dependent graphs…