IsEmpty returns true if the callstack has no frames.
()
| 205 | |
| 206 | // IsEmpty returns true if the callstack has no frames. |
| 207 | func (s *Callstack) IsEmpty() bool { return s.Depth() == 0 } |
| 208 | |
| 209 | // FinalUserFrame returns the final frame that corresponds |
| 210 | // to the user code execution. That usually translates to |
no test coverage detected