Skip to content

Commit 7574ce6

Browse files
committed
flip the order
1 parent b810c2b commit 7574ce6

27 files changed

+432
-429
lines changed

jscomp/bin/all_ounit_tests.ml

+60-62
Original file line numberDiff line numberDiff line change
@@ -4007,13 +4007,13 @@ let rec iter x f = match x with
40074007
| Node(l, v, d, r, _) ->
40084008
iter l f; f v d; iter r f
40094009

4010-
let rec map f = function
4010+
let rec map x f = match x with
40114011
Empty ->
40124012
Empty
40134013
| Node(l, v, d, r, h) ->
4014-
let l' = map f l in
4014+
let l' = map l f in
40154015
let d' = f d in
4016-
let r' = map f r in
4016+
let r' = map r f in
40174017
Node(l', v, d', r', h)
40184018

40194019
let rec mapi x f = match x with
@@ -4025,19 +4025,19 @@ let rec mapi x f = match x with
40254025
let r' = mapi r f in
40264026
Node(l', v, d', r', h)
40274027

4028-
let rec fold f m accu =
4028+
let rec fold m accu f =
40294029
match m with
40304030
Empty -> accu
40314031
| Node(l, v, d, r, _) ->
4032-
fold f r (f v d (fold f l accu))
4032+
fold r (f v d (fold l accu f)) f
40334033

4034-
let rec for_all p = function
4034+
let rec for_all x p = match x with
40354035
Empty -> true
4036-
| Node(l, v, d, r, _) -> p v d && for_all p l && for_all p r
4036+
| Node(l, v, d, r, _) -> p v d && for_all l p && for_all r p
40374037

4038-
let rec exists p = function
4038+
let rec exists x p = match x with
40394039
Empty -> false
4040-
| Node(l, v, d, r, _) -> p v d || exists p l || exists p r
4040+
| Node(l, v, d, r, _) -> p v d || exists l p || exists r p
40414041

40424042
(* Beware: those two functions assume that the added k is *strictly*
40434043
smaller (or bigger) than all the present keys in the tree; it
@@ -4086,22 +4086,22 @@ let concat_or_join t1 v d t2 =
40864086
| Some d -> join t1 v d t2
40874087
| None -> concat t1 t2
40884088

4089-
let rec filter p = function
4089+
let rec filter x p = match x with
40904090
Empty -> Empty
40914091
| Node(l, v, d, r, _) ->
40924092
(* call [p] in the expected left-to-right order *)
4093-
let l' = filter p l in
4093+
let l' = filter l p in
40944094
let pvd = p v d in
4095-
let r' = filter p r in
4095+
let r' = filter r p in
40964096
if pvd then join l' v d r' else concat l' r'
40974097

4098-
let rec partition p = function
4098+
let rec partition x p = match x with
40994099
Empty -> (Empty, Empty)
41004100
| Node(l, v, d, r, _) ->
41014101
(* call [p] in the expected left-to-right order *)
4102-
let (lt, lf) = partition p l in
4102+
let (lt, lf) = partition l p in
41034103
let pvd = p v d in
4104-
let (rt, rf) = partition p r in
4104+
let (rt, rf) = partition r p in
41054105
if pvd
41064106
then (join lt v d rt, concat lf rf)
41074107
else (concat lt rt, join lf v d rf)
@@ -4158,48 +4158,49 @@ module type S =
41584158
[m], except for [x] which is unbound in the returned map. *)
41594159

41604160
val merge:
4161-
(key -> 'a option -> 'b option -> 'c option) -> 'a t -> 'b t -> 'c t
4161+
'a t -> 'b t ->
4162+
(key -> 'a option -> 'b option -> 'c option) -> 'c t
41624163
(** [merge f m1 m2] computes a map whose keys is a subset of keys of [m1]
41634164
and of [m2]. The presence of each such binding, and the corresponding
41644165
value, is determined with the function [f].
41654166
@since 3.12.0
41664167
*)
41674168

4168-
val disjoint_merge : 'a t -> 'a t -> 'a t
4169+
val disjoint_merge : 'a t -> 'a t -> 'a t
41694170
(* merge two maps, will raise if they have the same key *)
4170-
val compare: ('a -> 'a -> int) -> 'a t -> 'a t -> int
4171+
val compare: 'a t -> 'a t -> ('a -> 'a -> int) -> int
41714172
(** Total ordering between maps. The first argument is a total ordering
41724173
used to compare data associated with equal keys in the two maps. *)
41734174

4174-
val equal: ('a -> 'a -> bool) -> 'a t -> 'a t -> bool
4175+
val equal: 'a t -> 'a t -> ('a -> 'a -> bool) -> bool
41754176

41764177
val iter: 'a t -> (key -> 'a -> unit) -> unit
41774178
(** [iter f m] applies [f] to all bindings in map [m].
41784179
The bindings are passed to [f] in increasing order. *)
41794180

4180-
val fold: (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b
4181+
val fold: 'a t -> 'b -> (key -> 'a -> 'b -> 'b) -> 'b
41814182
(** [fold f m a] computes [(f kN dN ... (f k1 d1 a)...)],
41824183
where [k1 ... kN] are the keys of all bindings in [m]
41834184
(in increasing order) *)
41844185

4185-
val for_all: (key -> 'a -> bool) -> 'a t -> bool
4186+
val for_all: 'a t -> (key -> 'a -> bool) -> bool
41864187
(** [for_all p m] checks if all the bindings of the map.
41874188
order unspecified
41884189
*)
41894190

4190-
val exists: (key -> 'a -> bool) -> 'a t -> bool
4191+
val exists: 'a t -> (key -> 'a -> bool) -> bool
41914192
(** [exists p m] checks if at least one binding of the map
41924193
satisfy the predicate [p].
41934194
order unspecified
41944195
*)
41954196

4196-
val filter: (key -> 'a -> bool) -> 'a t -> 'a t
4197+
val filter: 'a t -> (key -> 'a -> bool) -> 'a t
41974198
(** [filter p m] returns the map with all the bindings in [m]
41984199
that satisfy predicate [p].
41994200
order unspecified
42004201
*)
42014202

4202-
val partition: (key -> 'a -> bool) -> 'a t -> 'a t * 'a t
4203+
val partition: 'a t -> (key -> 'a -> bool) -> 'a t * 'a t
42034204
(** [partition p m] returns a pair of maps [(m1, m2)], where
42044205
[m1] contains all the bindings of [s] that satisfy the
42054206
predicate [p], and [m2] is the map with all the bindings of
@@ -4244,7 +4245,7 @@ module type S =
42444245
or raises [Not_found] if no such binding exists. *)
42454246
val find_opt: 'a t -> key ->'a option
42464247
val find_default: 'a t -> key -> 'a -> 'a
4247-
val map: ('a -> 'b) -> 'a t -> 'b t
4248+
val map: 'a t -> ('a -> 'b) -> 'b t
42484249
(** [map f m] returns a map with same domain as [m], where the
42494250
associated value [a] of all bindings of [m] has been
42504251
replaced by the result of the application of [f] to [a].
@@ -4409,15 +4410,15 @@ let rec split x (tree : _ Map_gen.t as 'a) : 'a * _ option * 'a = match tree wi
44094410
else
44104411
let (lr, pres, rr) = split x r in (Map_gen.join l v d lr, pres, rr)
44114412

4412-
let rec merge f (s1 : _ Map_gen.t) (s2 : _ Map_gen.t) : _ Map_gen.t =
4413+
let rec merge (s1 : _ Map_gen.t) (s2 : _ Map_gen.t) f : _ Map_gen.t =
44134414
match (s1, s2) with
44144415
| (Empty, Empty) -> Empty
44154416
| (Node (l1, v1, d1, r1, h1), _) when h1 >= height s2 ->
44164417
let (l2, d2, r2) = split v1 s2 in
4417-
Map_gen.concat_or_join (merge f l1 l2) v1 (f v1 (Some d1) d2) (merge f r1 r2)
4418+
Map_gen.concat_or_join (merge l1 l2 f) v1 (f v1 (Some d1) d2) (merge r1 r2 f)
44184419
| (_, Node (l2, v2, d2, r2, h2)) ->
44194420
let (l1, d1, r1) = split v2 s1 in
4420-
Map_gen.concat_or_join (merge f l1 l2) v2 (f v2 d1 (Some d2)) (merge f r1 r2)
4421+
Map_gen.concat_or_join (merge l1 l2 f) v2 (f v2 d1 (Some d2)) (merge r1 r2 f)
44214422
| _ ->
44224423
assert false
44234424

@@ -4443,9 +4444,9 @@ let rec disjoint_merge (s1 : _ Map_gen.t) (s2 : _ Map_gen.t) : _ Map_gen.t =
44434444

44444445

44454446

4446-
let compare cmp m1 m2 = Map_gen.compare compare_key cmp m1 m2
4447+
let compare m1 m2 cmp = Map_gen.compare compare_key cmp m1 m2
44474448

4448-
let equal cmp m1 m2 = Map_gen.equal compare_key cmp m1 m2
4449+
let equal m1 m2 cmp = Map_gen.equal compare_key cmp m1 m2
44494450

44504451
let add_list (xs : _ list ) init =
44514452
List.fold_left (fun acc (k,v) -> add acc k v ) init xs
@@ -4820,7 +4821,7 @@ let rec equal
48204821
| Obj {map} ->
48214822
begin match y with
48224823
| Obj { map = map2} ->
4823-
String_map.equal equal map map2
4824+
String_map.equal map map2 equal
48244825
| _ -> false
48254826
end
48264827

@@ -7128,7 +7129,7 @@ let collect_module_by_filename ~dir (map : t) file_name : t =
71287129

71297130

71307131
let sanity_check (map : t ) =
7131-
String_map.exists (fun _ module_info ->
7132+
String_map.exists map (fun _ module_info ->
71327133
match module_info with
71337134
| { ml_info = Ml_source(is_re,_);
71347135
mli_info = Mli_source(is_rei,_) } ->
@@ -7137,7 +7138,7 @@ let sanity_check (map : t ) =
71377138
| {mli_info = Mli_source(is_re,_); ml_info = Ml_empty}
71387139
-> is_re
71397140
| {ml_info = Ml_empty ; mli_info = Mli_empty } -> false
7140-
) map
7141+
)
71417142

71427143
end
71437144
module Bsb_db_io : sig
@@ -11492,10 +11493,10 @@ sig
1149211493
val of_array : elt array -> t
1149311494
val copy : t -> t
1149411495
val reverse_in_place : t -> unit
11495-
val iter : (elt -> unit) -> t -> unit
11496-
val iteri : (int -> elt -> unit ) -> t -> unit
11497-
val iter_range : from:int -> to_:int -> (elt -> unit) -> t -> unit
11498-
val iteri_range : from:int -> to_:int -> (int -> elt -> unit) -> t -> unit
11496+
val iter : t -> (elt -> unit) -> unit
11497+
val iteri : t -> (int -> elt -> unit ) -> unit
11498+
val iter_range : t -> from:int -> to_:int -> (elt -> unit) -> unit
11499+
val iteri_range : t -> from:int -> to_:int -> (int -> elt -> unit) -> unit
1149911500
val map : (elt -> elt) -> t -> t
1150011501
val mapi : (int -> elt -> elt) -> t -> t
1150111502
val map_into_array : (elt -> 'f) -> t -> 'f array
@@ -11669,27 +11670,27 @@ let sub (src : t) start len =
1166911670
{ len ;
1167011671
arr = unsafe_sub src.arr start len }
1167111672

11672-
let iter f d =
11673+
let iter d f =
1167311674
let arr = d.arr in
1167411675
for i = 0 to d.len - 1 do
1167511676
f (Array.unsafe_get arr i)
1167611677
done
1167711678

11678-
let iteri f d =
11679+
let iteri d f =
1167911680
let arr = d.arr in
1168011681
for i = 0 to d.len - 1 do
1168111682
f i (Array.unsafe_get arr i)
1168211683
done
1168311684

11684-
let iter_range ~from ~to_ f d =
11685+
let iter_range d ~from ~to_ f =
1168511686
if from < 0 || to_ >= d.len then invalid_arg "Resize_array.iter_range"
1168611687
else
1168711688
let d_arr = d.arr in
1168811689
for i = from to to_ do
1168911690
f (Array.unsafe_get d_arr i)
1169011691
done
1169111692

11692-
let iteri_range ~from ~to_ f d =
11693+
let iteri_range d ~from ~to_ f =
1169311694
if from < 0 || to_ >= d.len then invalid_arg "Resize_array.iteri_range"
1169411695
else
1169511696
let d_arr = d.arr in
@@ -12548,7 +12549,7 @@ let rec equal
1254812549
| Obj map ->
1254912550
begin match y with
1255012551
| Obj map2 ->
12551-
String_map.equal equal map map2
12552+
String_map.equal map map2 equal
1255212553
| _ -> false
1255312554
end
1255412555

@@ -12587,15 +12588,15 @@ let rec encode_aux (x : t )
1258712588
(*prerr_endline "WEIRD";
1258812589
prerr_endline (string_of_int @@ String_map.cardinal map ); *)
1258912590
a "{ ";
12590-
let _ : int = String_map.fold (fun k v i ->
12591+
let _ : int = String_map.fold map 0 (fun k v i ->
1259112592
if i <> 0 then begin
1259212593
a " , "
1259312594
end;
1259412595
a (quot k);
1259512596
a " : ";
1259612597
encode_aux v buf ;
1259712598
i + 1
12598-
) map 0 in
12599+
) in
1259912600
a " }"
1260012601
end
1260112602

@@ -13504,7 +13505,7 @@ let rec strip (x : Ext_json_types.t) : Ext_json_noloc.t =
1350413505
| Str {str = s} -> str s
1350513506
| Arr {content } -> arr (Array.map strip content)
1350613507
| Obj {map} ->
13507-
obj (String_map.map strip map)
13508+
obj (String_map.map map strip)
1350813509

1350913510
let id_parsing_serializing x =
1351013511
let normal_s =
@@ -13940,15 +13941,15 @@ let rec split x (tree : _ Map_gen.t as 'a) : 'a * _ option * 'a = match tree wi
1394013941
else
1394113942
let (lr, pres, rr) = split x r in (Map_gen.join l v d lr, pres, rr)
1394213943

13943-
let rec merge f (s1 : _ Map_gen.t) (s2 : _ Map_gen.t) : _ Map_gen.t =
13944+
let rec merge (s1 : _ Map_gen.t) (s2 : _ Map_gen.t) f : _ Map_gen.t =
1394413945
match (s1, s2) with
1394513946
| (Empty, Empty) -> Empty
1394613947
| (Node (l1, v1, d1, r1, h1), _) when h1 >= height s2 ->
1394713948
let (l2, d2, r2) = split v1 s2 in
13948-
Map_gen.concat_or_join (merge f l1 l2) v1 (f v1 (Some d1) d2) (merge f r1 r2)
13949+
Map_gen.concat_or_join (merge l1 l2 f) v1 (f v1 (Some d1) d2) (merge r1 r2 f)
1394913950
| (_, Node (l2, v2, d2, r2, h2)) ->
1395013951
let (l1, d1, r1) = split v2 s1 in
13951-
Map_gen.concat_or_join (merge f l1 l2) v2 (f v2 d1 (Some d2)) (merge f r1 r2)
13952+
Map_gen.concat_or_join (merge l1 l2 f) v2 (f v2 d1 (Some d2)) (merge r1 r2 f)
1395213953
| _ ->
1395313954
assert false
1395413955

@@ -13974,9 +13975,9 @@ let rec disjoint_merge (s1 : _ Map_gen.t) (s2 : _ Map_gen.t) : _ Map_gen.t =
1397413975

1397513976

1397613977

13977-
let compare cmp m1 m2 = Map_gen.compare compare_key cmp m1 m2
13978+
let compare m1 m2 cmp = Map_gen.compare compare_key cmp m1 m2
1397813979

13979-
let equal cmp m1 m2 = Map_gen.equal compare_key cmp m1 m2
13980+
let equal m1 m2 cmp = Map_gen.equal compare_key cmp m1 m2
1398013981

1398113982
let add_list (xs : _ list ) init =
1398213983
List.fold_left (fun acc (k,v) -> add acc k v ) init xs
@@ -14486,27 +14487,27 @@ let sub (src : t) start len =
1448614487
{ len ;
1448714488
arr = unsafe_sub src.arr start len }
1448814489

14489-
let iter f d =
14490+
let iter d f =
1449014491
let arr = d.arr in
1449114492
for i = 0 to d.len - 1 do
1449214493
f (Array.unsafe_get arr i)
1449314494
done
1449414495

14495-
let iteri f d =
14496+
let iteri d f =
1449614497
let arr = d.arr in
1449714498
for i = 0 to d.len - 1 do
1449814499
f i (Array.unsafe_get arr i)
1449914500
done
1450014501

14501-
let iter_range ~from ~to_ f d =
14502+
let iter_range d ~from ~to_ f =
1450214503
if from < 0 || to_ >= d.len then invalid_arg "Resize_array.iter_range"
1450314504
else
1450414505
let d_arr = d.arr in
1450514506
for i = from to to_ do
1450614507
f (Array.unsafe_get d_arr i)
1450714508
done
1450814509

14509-
let iteri_range ~from ~to_ f d =
14510+
let iteri_range d ~from ~to_ f =
1451014511
if from < 0 || to_ >= d.len then invalid_arg "Resize_array.iteri_range"
1451114512
else
1451214513
let d_arr = d.arr in
@@ -15028,11 +15029,9 @@ let graph e =
1502815029

1502915030
index_array.(v_data) <- new_index ;
1503015031
lowlink_array.(v_data) <- new_index ;
15031-
on_stack_array.(v_data) <- true ;
15032-
15033-
let v = e.(v_data) in
15034-
v
15035-
|> Int_vec.iter (fun w_data ->
15032+
on_stack_array.(v_data) <- true ;
15033+
let v = e.(v_data) in
15034+
Int_vec.iter v (fun w_data ->
1503615035
if Array.unsafe_get index_array w_data < 0 then (* not processed *)
1503715036
begin
1503815037
scc w_data;
@@ -16217,9 +16216,8 @@ let layered_dfs (g : t) =
1621716216
then
1621816217
begin
1621916218
Queue.push new_entries queue ;
16220-
Edge_vec.iter
16221-
(fun edges -> Int_vec.inplace_filter
16222-
(fun x -> not (Set_int.mem new_entries x)) edges.deps ) g ;
16219+
Edge_vec.iter g (fun edges -> Int_vec.inplace_filter
16220+
(fun x -> not (Set_int.mem new_entries x)) edges.deps ) ;
1622316221
aux g
1622416222
end
1622516223
in aux g ; queue

0 commit comments

Comments
 (0)