| 1 | package ast |
| 2 | |
| 3 | type XmlExpr struct { |
| 4 | Xpr Node |
| 5 | Op XmlExprOp |
| 6 | Name *string |
| 7 | NamedArgs *List |
| 8 | ArgNames *List |
| 9 | Args *List |
| 10 | Xmloption XmlOptionType |
| 11 | Type Oid |
| 12 | Typmod int32 |
| 13 | Location int |
| 14 | } |
| 15 | |
| 16 | func (n *XmlExpr) Pos() int { |
| 17 | return n.Location |
nothing calls this directly
no outgoing calls
no test coverage detected