A Frame describes a location in a single line in a source file.
| 159 | |
| 160 | // A Frame describes a location in a single line in a source file. |
| 161 | type Frame struct { |
| 162 | Func string // name of function |
| 163 | File string // source file name |
| 164 | Line int // line in file |
| 165 | Column int // column in line (if available) |
| 166 | StartLine int // start line of function (if available) |
| 167 | } |
| 168 | |
| 169 | // A Sym describes a single symbol in an object file. |
| 170 | type Sym struct { |