| 1 | package ast |
| 2 | |
| 3 | type RangeTableFunc struct { |
| 4 | Lateral bool |
| 5 | Docexpr Node |
| 6 | Rowexpr Node |
| 7 | Namespaces *List |
| 8 | Columns *List |
| 9 | Alias *Alias |
| 10 | Location int |
| 11 | } |
| 12 | |
| 13 | func (n *RangeTableFunc) Pos() int { |
| 14 | return n.Location |
nothing calls this directly
no outgoing calls
no test coverage detected