Closed dinosaure closed 6 years ago
Why do you need cmp
? Isn't equal
enough for fuzzin/testing?
Hmmhmm, it's an optional argument of check_eq
of crowbar
. So, we can delete it but it seems a good feature.
You could just provide the eq
function (which is much easier to write than compare)
Done 👍 !
Thanks!
compare
function as pretty-printer function for any value inParsetree
andTypedtree
module - and be able to properly compare value instead to usePervasives.compare
.Typedtree.Expr.t
[ my_var; ... ]
or[| my_var |]
, we add 2 constructors in the internal GADT.Cons
for a list (as a binary operator) andNar
andArr
for a n-ary constructor (Nar
) which can be used to create an arrayArr
Switch
UnboundVariable
specially to know when a fuzzer produce a bad codeThen, this is a base for the fuzzer next (soon).