()
| 1056 | } |
| 1057 | |
| 1058 | func (o *backtickOpt) Option() cel.EnvOption { |
| 1059 | if o.enabled { |
| 1060 | return cel.EnableIdentifierEscapeSyntax() |
| 1061 | } |
| 1062 | return func(e *cel.Env) (*cel.Env, error) { return e, nil } |
| 1063 | } |
| 1064 | |
| 1065 | func (o *backtickOpt) String() string { |
| 1066 | return "%option --enable_escaped_fields" |
nothing calls this directly
no test coverage detected