Module Wd_script.Local_value

type binding = [ `Key of t | `Key_string of string ] * t
and t = [
  1. | `Array_local_value of t list
  2. | `Big_int_value of Big_int_value.t
  3. | `Boolean_value of Boolean_value.t
  4. | `Channel_value of Channel_value.t
  5. | `Date_local_value of Date_value.t
  6. | `Map_local_value of binding list
  7. | `Null_value of Null_value.t
  8. | `Number_value of Number_value.t
  9. | `Object_local_value of binding list
  10. | `Regexp_local_value of Regexp_local_value.t
  11. | `Remote_reference of Remote_reference.t
  12. | `Set_local_value of t list
  13. | `String_value of String_value.t
  14. | `Undefined_value of Undefined_value.t
]
val jsont : t Jsont.t
val binding_jsont : binding Jsont.t