raw_stmt.go 197 B

123456789101112131415
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type RawStmt struct {
  6. Stmt ast.Node
  7. StmtLocation int
  8. StmtLen int
  9. }
  10. func (n *RawStmt) Pos() int {
  11. return 0
  12. }