a_indirection.go 195 B

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