Module Morsmall_utilities__TestParser
abstract syntax of test expressions
type expression=|And of expression * expression|Or of expression * expression|Not of expression|Binary of string * string * string|Unary of string * string|Single of string
val parse : ?bracket:bool -> string list -> expression optionparse ~bracket wlparses the list of wordswlas a test expression (orNoneifwlis empty). Ifbracketistruethen the last word ofwlmust be a right bracket.