Module Lang.Value

type value =
  1. | Abstract
  2. | External of string list
type t = {
  1. id : Paths.Identifier.Value.t;
  2. doc : Comment.docs;
  3. type_ : TypeExpr.t;
  4. value : value;
}