(trace traceElement)
| 144 | } |
| 145 | |
| 146 | func (s *callStack) setCurrentTrace(trace traceElement) { |
| 147 | if s.currentTrace != (traceElement{}) { |
| 148 | panic("Tried to change the traceElement while the old one was still there.") |
| 149 | } |
| 150 | s.currentTrace = trace |
| 151 | } |
| 152 | |
| 153 | func (s *callStack) clearCurrentTrace() { |
| 154 | s.currentTrace = traceElement{} |
no outgoing calls
no test coverage detected