Module Sqlgg_json_path.AstSource

Sourcetype array_index =
  1. | Index of int
  2. | Wildcard
  3. | Last
  4. | LastOffset of int
Sourcetype range = {
  1. start_idx : array_index;
  2. end_idx : array_index;
}
Sourcetype path_leg =
  1. | Member of string
  2. | ArrayAccess of array_index
  3. | ArrayRange of range
  4. | MemberWildcard
  5. | DoubleWildcard
Sourcetype t = {
  1. scope : string;
  2. legs : path_leg list;
}
Sourcemodule Syntax : sig ... end