CaseExpr represents a CASE expression.
| 1394 | |
| 1395 | // CaseExpr represents a CASE expression. |
| 1396 | type CaseExpr struct { |
| 1397 | Expr Expr |
| 1398 | Whens []*When |
| 1399 | Else Expr |
| 1400 | |
| 1401 | typeAnnotation |
| 1402 | } |
| 1403 | |
| 1404 | // Format implements the NodeFormatter interface. |
| 1405 | func (node *CaseExpr) Format(ctx *FmtCtx) { |
nothing calls this directly
no outgoing calls
no test coverage detected