a_const.go 180 B

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