Module Syntax_tree.Location_identifier

type path =
  1. | Name of string
  2. | Int64 of int64
  3. | Inside : {
    1. locid : 'b t;
    2. idx : int;
    } -> path
and 'a kind =
  1. | Address
  2. | Expression
  3. | DbaInstruction

The syntactic element represented.

and 'a t = 'a kind * path
val equal : 'a t -> 'b t -> bool
val hash : 'a t -> int
type any =
  1. | Any : 'a t -> any