Stack holds a single stack instance.
| 40 | |
| 41 | // Stack holds a single stack instance. |
| 42 | type Stack struct { |
| 43 | Value int64 // Total value for all samples of this stack. |
| 44 | Sources []int // Indices in StackSet.Sources (callers before callees). |
| 45 | } |
| 46 | |
| 47 | // StackSource holds function/location info for a stack entry. |
| 48 | type StackSource struct { |
nothing calls this directly
no outgoing calls
no test coverage detected