object_with_args.go 228 B

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