Module Lang.ValueSource

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