| 70 | } |
| 71 | |
| 72 | type IDTerm struct { |
| 73 | P position.Position |
| 74 | Name string |
| 75 | Symbol *symbol.Symbol |
| 76 | Lvalue bool // If set, then this node appears on the left side of an |
| 77 | // assignment and needs to have its address taken only. |
| 78 | } |
| 79 | |
| 80 | func (n *IDTerm) Pos() *position.Position { |
| 81 | return &n.P |
nothing calls this directly
no outgoing calls
no test coverage detected