You can search for identifiers within the package.
in-package search v0.2.0
Module defining types used to represent a config.
type directive = {
name : string;
params : string list;
children : directive list;
}
A directive has a name, a list of parameters and children (a list of directive).
type config = directive list
A config is a list of directives.