MCPcopy Create free account
hub / github.com/maruel/panicparse / Stack

Struct Stack

stack/stack.go:506–516  ·  view source on GitHub ↗

Stack is a call stack.

Source from the content-addressed store, hash-verified

504
505// Stack is a call stack.
506type Stack struct {
507 // Calls is the call stack. First is original function, last is leaf
508 // function.
509 Calls []Call
510 // Elided is set when there's >100 items in Stack, currently hardcoded in
511 // package runtime.
512 Elided bool
513
514 // Disallow initialization with unnamed parameters.
515 _ struct{}
516}
517
518// equal returns true on if both call stacks are exactly equal.
519func (s *Stack) equal(r *Stack) bool {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected