12345678910111213141516171819202122232425262728293031323334353637(*****************************************************************************)(* *)(* SPDX-License-Identifier: MIT *)(* Copyright (c) 2023 Nomadic Labs <contact@nomadic-labs.com> *)(* *)(*****************************************************************************)(** Abstract Syntax Tree of the Test Selection Language. *)openBase(** Test properties that can be queried using string operators. *)typestring_var=File|Title(** Test properties that can be queried using integer comparison operators. *)typeint_var=Memory(** Test properties that can be queried using float comparison operators. *)typefloat_var=Duration(** Comparison operators for strings. *)typestring_operator=Isofstring|Matchesofrex(** Comparison operators for numbers. *)typenumeric_operator=EQ|NE|GT|GE|LT|LE(** AST of TSL. *)typet=|True|False|String_predicateofstring_var*string_operator|Int_predicateofint_var*numeric_operator*int|Float_predicateoffloat_var*numeric_operator*float|Has_tagofstring|Notoft|Andoft*t|Oroft*t