Module Mlang.Test_ast
type literal
=
|
I of int
|
F of float
type var_values
= (string * literal * Pos.t) list
type test_file
=
{
nom : string;
ep : var_values;
cp : var_values;
rp : var_values;
corr : (var_values * var_values * var_values) option;
}