CaseExpression represents a CASE expression
| 752 | |
| 753 | // CaseExpression represents a CASE expression |
| 754 | type CaseExpression struct { |
| 755 | Value Expression // Optional CASE value |
| 756 | WhenClauses []WhenClause |
| 757 | ElseClause Expression |
| 758 | Pos models.Location // Source position of the CASE keyword (1-based line and column) |
| 759 | } |
| 760 | |
| 761 | func (c *CaseExpression) expressionNode() {} |
| 762 | func (c CaseExpression) TokenLiteral() string { return "CASE" } |
nothing calls this directly
no outgoing calls
no test coverage detected