ExprContext implements the `exprctx.ExprContext` interface. The "static" means comparing with `ExprContext`, its internal state does not relay on the session or other complex contexts that keeps immutable for most fields.
| 144 | // The "static" means comparing with `ExprContext`, its internal state does not relay on the session or other |
| 145 | // complex contexts that keeps immutable for most fields. |
| 146 | type ExprContext struct { |
| 147 | exprCtxState |
| 148 | } |
| 149 | |
| 150 | // NewExprContext creates a new ExprContext |
| 151 | func NewExprContext(opts ...ExprCtxOption) *ExprContext { |
nothing calls this directly
no outgoing calls
no test coverage detected