| 1 | package ast |
| 2 | |
| 3 | type FieldSelect struct { |
| 4 | Xpr Node |
| 5 | Arg Node |
| 6 | Fieldnum AttrNumber |
| 7 | Resulttype Oid |
| 8 | Resulttypmod int32 |
| 9 | Resultcollid Oid |
| 10 | } |
| 11 | |
| 12 | func (n *FieldSelect) Pos() int { |
| 13 | return 0 |
nothing calls this directly
no outgoing calls
no test coverage detected