You can search for identifiers within the package.
in-package search v0.2.0
type value =
| Identifier of string
| Integer of int
| Float of float
| String of string
| And of value * value
| Or of value * value
type section = {
name : Name.t;
elements : (string * value) list;
}
type t = section list
exception Exception of int * string