A Frame describes a single line in a source file.
| 187 | |
| 188 | // A Frame describes a single line in a source file. |
| 189 | type Frame struct { |
| 190 | Func string // name of function |
| 191 | File string // source file name |
| 192 | Line int // line in file |
| 193 | Column int // column in file |
| 194 | StartLine int // start line of function (if available) |
| 195 | } |
| 196 | |
| 197 | // A Sym describes a single symbol in an object file. |
| 198 | type Sym struct { |
nothing calls this directly
no outgoing calls
no test coverage detected