xml_serialize.go 238 B

12345678910111213141516
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type XmlSerialize struct {
  6. Xmloption XmlOptionType
  7. Expr ast.Node
  8. TypeName *TypeName
  9. Location int
  10. }
  11. func (n *XmlSerialize) Pos() int {
  12. return n.Location
  13. }