param_ref.go 118 B

12345678910
  1. package pg
  2. type ParamRef struct {
  3. Number int
  4. Location int
  5. }
  6. func (n *ParamRef) Pos() int {
  7. return n.Location
  8. }