| 3 | import "github.com/sqlc-dev/sqlc/internal/sql/format" |
| 4 | |
| 5 | type CaseExpr struct { |
| 6 | Xpr Node |
| 7 | Casetype Oid |
| 8 | Casecollid Oid |
| 9 | Arg Node |
| 10 | Args *List |
| 11 | Defresult Node |
| 12 | Location int |
| 13 | } |
| 14 | |
| 15 | func (n *CaseExpr) Pos() int { |
| 16 | return n.Location |
nothing calls this directly
no outgoing calls
no test coverage detected