package piqilib

  1. Overview
  2. Docs
type ast = [
  1. | `int of int64 * string
  2. | `uint of int64 * string
  3. | `float of float * string
  4. | `bool of bool
  5. | `word of string
  6. | `string of string * string
  7. | `binary of string * string
  8. | `text of string
  9. | `name of string
  10. | `named of Named.t
  11. | `typename of string
  12. | `typed of Typed.t
  13. | `list of ast list
  14. | `form of ast * ast list
  15. | `raw_string of string
  16. | `any of int
]
and form_name = [
  1. | `word of string
  2. | `name of string
  3. | `typename of string
]