NodeInfo contains the attributes for a node.
| 149 | |
| 150 | // NodeInfo contains the attributes for a node. |
| 151 | type NodeInfo struct { |
| 152 | Name string |
| 153 | OrigName string |
| 154 | Address uint64 |
| 155 | File string |
| 156 | StartLine, Lineno int |
| 157 | Columnno int |
| 158 | Objfile string |
| 159 | } |
| 160 | |
| 161 | // PrintableName calls the Node's Formatter function with a single space separator. |
| 162 | func (i *NodeInfo) PrintableName() string { |
nothing calls this directly
no outgoing calls
no test coverage detected