(s string)
| 173 | // |
| 174 | |
| 175 | func newFunc(s string) stack.Func { |
| 176 | f := stack.Func{} |
| 177 | if err := f.Init(s); err != nil { |
| 178 | panic(err) |
| 179 | } |
| 180 | return f |
| 181 | } |
| 182 | |
| 183 | func newCallLocal(f string, a stack.Args, s string, l int) stack.Call { |
| 184 | c := stack.Call{Func: newFunc(f), Args: a, RemoteSrcPath: s, Line: l} |
no test coverage detected
searching dependent graphs…