window_def.go 275 B

12345678910111213141516
  1. package ast
  2. type WindowDef struct {
  3. Name *string
  4. Refname *string
  5. PartitionClause *List
  6. OrderClause *List
  7. FrameOptions int
  8. StartOffset Node
  9. EndOffset Node
  10. Location int
  11. }
  12. func (n *WindowDef) Pos() int {
  13. return n.Location
  14. }