EagerlyValidateDeclarations ensures that any collisions between configured declarations are caught at the time of the `NewEnv` call. Eagerly validating declarations is also useful for bootstrapping a base `cel.Env` value. Calls to base `Env.Extend()` will be significantly faster when declarations a
(enabled bool)
| 211 | // |
| 212 | // Disabled by default as not all environments are used for type-checking. |
| 213 | func EagerlyValidateDeclarations(enabled bool) EnvOption { |
| 214 | return features(featureEagerlyValidateDeclarations, enabled) |
| 215 | } |
| 216 | |
| 217 | // HomogeneousAggregateLiterals disables mixed type list and map literal values. |
| 218 | // |