Validators returns a shallow copy of the set of ASTValidators configured on the environment.
()
| 689 | |
| 690 | // Validators returns a shallow copy of the set of ASTValidators configured on the environment. |
| 691 | func (e *Env) Validators() []ASTValidator { |
| 692 | return slices.Clone(e.validators) |
| 693 | } |
| 694 | |
| 695 | // Parse parses the input expression value `txt` to a Ast and/or a set of Issues. |
| 696 | // |