@@ -53,8 +53,6 @@ and ident_dict = ident_create "dict"
5353
5454and ident_bigint = ident_create " bigint"
5555
56- and ident_lazy_t = ident_create " lazy_t"
57-
5856and ident_string = ident_create " string"
5957
6058and ident_extension_constructor = ident_create " extension_constructor"
@@ -98,8 +96,6 @@ and path_dict = Pident ident_dict
9896
9997and path_bigint = Pident ident_bigint
10098
101- and path_lazy_t = Pident ident_lazy_t
102-
10399and path_string = Pident ident_string
104100
105101and path_unkonwn = Pident ident_unknown
@@ -132,8 +128,6 @@ and type_dict t = newgenty (Tconstr (path_dict, [t], ref Mnil))
132128
133129and type_bigint = newgenty (Tconstr (path_bigint, [] , ref Mnil ))
134130
135- and type_lazy_t t = newgenty (Tconstr (path_lazy_t, [t], ref Mnil ))
136-
137131and type_string = newgenty (Tconstr (path_string, [] , ref Mnil ))
138132
139133and type_unknown = newgenty (Tconstr (path_unkonwn, [] , ref Mnil ))
@@ -332,14 +326,6 @@ let common_initial_env add_type add_extension empty_env =
332326 ];
333327 type_unboxed = Types. unboxed_true_default_false;
334328 }
335- and decl_lazy_t =
336- let tvar = newgenvar () in
337- {
338- decl_abstr with
339- type_params = [tvar];
340- type_arity = 1 ;
341- type_variance = [Variance. covariant];
342- }
343329 and decl_promise =
344330 let tvar = newgenvar () in
345331 {
@@ -381,7 +367,6 @@ let common_initial_env add_type add_extension empty_env =
381367 |> add_type ident_exn decl_exn
382368 |> add_type ident_option decl_option
383369 |> add_type ident_result decl_result
384- |> add_type ident_lazy_t decl_lazy_t
385370 |> add_type ident_promise decl_promise
386371 |> add_type ident_array decl_array
387372 |> add_type ident_list decl_list
0 commit comments