a_array_expr.go 189 B

1234567891011121314
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type A_ArrayExpr struct {
  6. Elements *ast.List
  7. Location int
  8. }
  9. func (n *A_ArrayExpr) Pos() int {
  10. return n.Location
  11. }