Node is INode
| 31 | |
| 32 | // Node is INode |
| 33 | type Node struct { |
| 34 | // Location is node location |
| 35 | Location *NodeLocation |
| 36 | value string |
| 37 | } |
| 38 | |
| 39 | // NewNode creates Node |
| 40 | func NewNode(location *NodeLocation) *Node { |
nothing calls this directly
no outgoing calls
no test coverage detected