Module Private_.Meta_parser
type t = {name : string option;entries : entry list;
}and entry = | Rule of rule| Package of t
and rule = {var : string;predicates : predicate list;action : action;value : string;
}and predicate = | Pos of string| Neg of string
module Parse : sig ... end