SetLocation sets the location of the node in the source code.
(loc file.Location)
| 43 | |
| 44 | // SetLocation sets the location of the node in the source code. |
| 45 | func (n *base) SetLocation(loc file.Location) { |
| 46 | n.loc = loc |
| 47 | } |
| 48 | |
| 49 | // Nature returns the nature of the node. |
| 50 | func (n *base) Nature() *nature.Nature { |
nothing calls this directly
no outgoing calls
no test coverage detected