BetweenExpression represents expr BETWEEN lower AND upper
| 854 | |
| 855 | // BetweenExpression represents expr BETWEEN lower AND upper |
| 856 | type BetweenExpression struct { |
| 857 | Expr Expression |
| 858 | Lower Expression |
| 859 | Upper Expression |
| 860 | Not bool |
| 861 | Pos models.Location // Source position of the BETWEEN keyword (1-based line and column) |
| 862 | } |
| 863 | |
| 864 | func (b *BetweenExpression) expressionNode() {} |
| 865 | func (b BetweenExpression) TokenLiteral() string { return "BETWEEN" } |
nothing calls this directly
no outgoing calls
no test coverage detected