With is With
| 16 | |
| 17 | // With is With |
| 18 | type With struct { |
| 19 | // Node is INode |
| 20 | INode |
| 21 | // Recursive is with Recursive |
| 22 | Recursive bool |
| 23 | // Queries is WithQuery |
| 24 | Queries []*WithQuery |
| 25 | } |
| 26 | |
| 27 | // NewWith creates With |
| 28 | func NewWith(location *NodeLocation, recursive bool, queries []*WithQuery) *With { |
nothing calls this directly
no outgoing calls
no test coverage detected