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

Struct Args

stack/stack.go:219–231  ·  view source on GitHub ↗

Args is a series of function call arguments.

Source from the content-addressed store, hash-verified

217
218// Args is a series of function call arguments.
219type Args struct {
220 // Values is the arguments as shown on the stack trace. They are mangled via
221 // simplification.
222 Values []Arg
223 // Processed is the arguments generated from processing the source files. It
224 // can have a length lower than Values.
225 Processed []string
226 // Elided when set means there was a trailing ", ...".
227 Elided bool
228
229 // Disallow initialization with unnamed parameters.
230 _ struct{}
231}
232
233func (a *Args) String() string {
234 var v []string

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected