File tree 5 files changed +12
-8
lines changed
5 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,8 @@ export npm_package_name=bs-platform
9
9
10
10
echo " Checking"
11
11
12
- # make -r -j5 syntax.cmxa
12
+ # make -r -j5 syntax.cmxa depends.cmxa bsb.cmxa
13
+
13
14
make -r -j5 check
14
15
echo " Linking"
15
16
make -r -j3 ../lib/bsc.exe ../lib/bsb.exe bin/cmjdump.exe ../lib/bsb_helper.exe
Original file line number Diff line number Diff line change @@ -38884,7 +38884,7 @@ let rec unsafe_mapper : Bs_ast_mapper.mapper =
38884
38884
pcsig_fields = Ast_core_type_class_type.handle_class_type_fields self pcsig_fields
38885
38885
};
38886
38886
pcty_attributes
38887
- }
38887
+ }
38888
38888
38889
38889
| Pcty_constr _
38890
38890
| Pcty_extension _
Original file line number Diff line number Diff line change @@ -20889,7 +20889,7 @@ let rec unsafe_mapper : Bs_ast_mapper.mapper =
20889
20889
pcsig_fields = Ast_core_type_class_type.handle_class_type_fields self pcsig_fields
20890
20890
};
20891
20891
pcty_attributes
20892
- }
20892
+ }
20893
20893
20894
20894
| Pcty_constr _
20895
20895
| Pcty_extension _
Original file line number Diff line number Diff line change @@ -27098,13 +27098,19 @@ type module_name = private string
27098
27098
27099
27099
module String_set = Depend.StringSet
27100
27100
27101
+ (* FIXME: [Clflags.open_modules] seems not to be properly used *)
27102
+
27103
+ let bound_vars = String_set.empty
27104
+
27105
+
27101
27106
type 'a kind = 'a Ml_binary.kind
27102
27107
27108
+
27103
27109
let read_parse_and_extract (type t) (k : t kind) (ast : t) : String_set.t =
27104
27110
Depend.free_structure_names := String_set.empty;
27105
- let bound_vars = String_set.empty in
27106
27111
List.iter
27107
27112
(fun modname ->
27113
+
27108
27114
Depend.open_module bound_vars (Longident.Lident modname))
27109
27115
(!Clflags.open_modules);
27110
27116
(match k with
@@ -113913,7 +113919,7 @@ let rec unsafe_mapper : Bs_ast_mapper.mapper =
113913
113919
pcsig_fields = Ast_core_type_class_type.handle_class_type_fields self pcsig_fields
113914
113920
};
113915
113921
pcty_attributes
113916
- }
113922
+ }
113917
113923
113918
113924
| Pcty_constr _
113919
113925
| Pcty_extension _
Original file line number Diff line number Diff line change 17
17
18
18
open Lambda
19
19
20
- val simplify_exits : lambda -> lambda
21
- val eliminate_ref : Lambda.IdentSet .elt -> Lambda .lambda -> Lambda .lambda
22
- val simplify_lets : Lambda .lambda -> Lambda .lambda
23
20
val simplify_lambda : lambda -> lambda
24
21
25
22
(* To be filled by asmcomp/selectgen.ml *)
You can’t perform that action at this time.
0 commit comments