jon.recoil.org

Module Parser_types

type let_binding = {
  1. lb_pattern : Parsetree.pattern;
  2. lb_expression : Parsetree.expression;
  3. lb_constraint : Parsetree.value_constraint option;
  4. lb_is_pun : bool;
  5. lb_modes : Parsetree.modes;
  6. lb_attributes : Parsetree.attributes;
  7. lb_docs : Docstrings.docs Stdlib.Lazy.t;
  8. lb_text : Docstrings.text Stdlib.Lazy.t;
  9. lb_loc : Location.t;
}
type let_bindings = {
  1. lbs_bindings : Parser_types.let_binding list;
  2. lbs_mutable : Asttypes.mutable_flag;
  3. lbs_rec : Asttypes.rec_flag;
  4. lbs_extension : string Asttypes.loc option;
}