MCPcopy Create free account
hub / github.com/google/gapid / String

Method String

core/fault/stacktrace/stacktrace.go:100–107  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

98}
99
100func (c Callstack) String() string {
101 entries := c.Entries()
102 lines := make([]string, len(entries))
103 for i, e := range entries {
104 lines[i] = e.String()
105 }
106 return strings.Join(lines, "\n")
107}
108
109func (e Entry) String() string {
110 return fmt.Sprint("⇒ ", e.Location, ":", e.Function)

Callers

nothing calls this directly

Calls 3

EntriesMethod · 0.95
StringMethod · 0.65
JoinMethod · 0.45

Tested by

no test coverage detected