1
0

a_expr.go 239 B

1234567891011121314151617
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type A_Expr struct {
  6. Kind A_Expr_Kind
  7. Name *ast.List
  8. Lexpr ast.Node
  9. Rexpr ast.Node
  10. Location int
  11. }
  12. func (n *A_Expr) Pos() int {
  13. return n.Location
  14. }