Source file reason_parser_def.ml

1
2
3
4
5
6
7
8
9
10
11
12
open Reason_omp.OCaml_411.Ast

type labelled_parameter =
  | Term of Asttypes.arg_label * Parsetree.expression option * Parsetree.pattern
  | Type of string

type let_bindings = {
  lbs_bindings: Parsetree.value_binding list;
  lbs_rec: Asttypes.rec_flag;
  lbs_extension: (Parsetree.attributes * string Asttypes.loc) option;
  lbs_loc: Location.t;
}