IsExpr represents an IS ... or an IS NOT ... expression.
| 2112 | |
| 2113 | // IsExpr represents an IS ... or an IS NOT ... expression. |
| 2114 | type IsExpr struct { |
| 2115 | Operator string |
| 2116 | Expr Expr |
| 2117 | } |
| 2118 | |
| 2119 | // IsExpr.Operator |
| 2120 | const ( |
nothing calls this directly
no outgoing calls
no test coverage detected