| 3 | import "github.com/sqlc-dev/sqlc/internal/sql/format" |
| 4 | |
| 5 | type DefElem struct { |
| 6 | Defnamespace *string |
| 7 | Defname *string |
| 8 | Arg Node |
| 9 | Defaction DefElemAction |
| 10 | Location int |
| 11 | } |
| 12 | |
| 13 | func (n *DefElem) Pos() int { |
| 14 | return n.Location |
nothing calls this directly
no outgoing calls
no test coverage detected