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)
| 226 | // |
| 227 | // Disabled by default as not all environments are used for type-checking. |
| 228 | func EagerlyValidateDeclarations(enabled bool) EnvOption { |
| 229 | return features(featureEagerlyValidateDeclarations, enabled) |
| 230 | } |
| 231 | |
| 232 | // HomogeneousAggregateLiterals disables mixed type list and map literal values. |
| 233 | // |