a_indices.go 192 B

123456789101112131415
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type A_Indices struct {
  6. IsSlice bool
  7. Lidx ast.Node
  8. Uidx ast.Node
  9. }
  10. func (n *A_Indices) Pos() int {
  11. return 0
  12. }