(s string)
| 369 | } |
| 370 | |
| 371 | func newFunc(s string) Func { |
| 372 | f := Func{} |
| 373 | if s != "" { |
| 374 | if err := f.Init(s); err != nil { |
| 375 | panic(err) |
| 376 | } |
| 377 | } |
| 378 | return f |
| 379 | } |
| 380 | |
| 381 | func newCall(f string, a Args, s string, l int) Call { |
| 382 | c := Call{Func: newFunc(f), Args: a} |
no test coverage detected
searching dependent graphs…