Skip to content

Commit 17afcfa

Browse files
committed
Remake the world again
Signed-Off-By: Josh Abernathy <joshaber@gmail.com>
1 parent e2931d4 commit 17afcfa

8 files changed

+27
-54
lines changed

lib/js/array.js

+7-14
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,7 @@ function sort(cmp, a) {
218218
x = i31 + 2 | 0;
219219
}
220220
return x;
221-
}
222-
else if ((i31 + 1 | 0) < l && Curry._2(cmp, Caml_array.caml_array_get(a, i31), Caml_array.caml_array_get(a, i31 + 1 | 0)) < 0) {
221+
} else if ((i31 + 1 | 0) < l && Curry._2(cmp, Caml_array.caml_array_get(a, i31), Caml_array.caml_array_get(a, i31 + 1 | 0)) < 0) {
223222
return i31 + 1 | 0;
224223
} else if (i31 < l) {
225224
return i31;
@@ -243,17 +242,15 @@ function sort(cmp, a) {
243242
_i = j;
244243
continue ;
245244

246-
}
247-
else {
245+
} else {
248246
return Caml_array.caml_array_set(a, i$1, e$1);
249247
}
250248
};
251249
}
252250
catch (exn){
253251
if (exn[0] === Bottom) {
254252
return Caml_array.caml_array_set(a, exn[1], e);
255-
}
256-
else {
253+
} else {
257254
throw exn;
258255
}
259256
}
@@ -299,12 +296,10 @@ function sort(cmp, a) {
299296
_i = father;
300297
continue ;
301298

302-
}
303-
else {
299+
} else {
304300
return Caml_array.caml_array_set(a, 0, e);
305301
}
306-
}
307-
else {
302+
} else {
308303
return Caml_array.caml_array_set(a, i, e);
309304
}
310305
};
@@ -322,8 +317,7 @@ function sort(cmp, a) {
322317
var e$1 = Caml_array.caml_array_get(a, 1);
323318
Caml_array.caml_array_set(a, 1, Caml_array.caml_array_get(a, 0));
324319
return Caml_array.caml_array_set(a, 0, e$1);
325-
}
326-
else {
320+
} else {
327321
return 0;
328322
}
329323
}
@@ -355,8 +349,7 @@ function stable_sort(cmp, a) {
355349
} else {
356350
return blit(src2, i2, dst, d + 1 | 0, src2r - i2 | 0);
357351
}
358-
}
359-
else {
352+
} else {
360353
Caml_array.caml_array_set(dst, d, s2);
361354
var i2$1 = i2 + 1 | 0;
362355
if (i2$1 < src2r) {

lib/js/caml_array.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,7 @@ function caml_array_set(xs, index, newval) {
6666
Caml_builtin_exceptions.invalid_argument,
6767
"index out of bounds"
6868
];
69-
}
70-
else {
69+
} else {
7170
xs[index] = newval;
7271
return /* () */0;
7372
}
@@ -79,8 +78,7 @@ function caml_array_get(xs, index) {
7978
Caml_builtin_exceptions.invalid_argument,
8079
"index out of bounds"
8180
];
82-
}
83-
else {
81+
} else {
8482
return xs[index];
8583
}
8684
}

lib/js/camlinternalMod.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,9 @@ function init_mod(loc, shape) {
2222
return Caml_array.caml_array_set(struct_, idx, CamlinternalOO.dummy_class(loc));
2323

2424
}
25-
}
26-
else if (shape.tag) {
25+
} else if (shape.tag) {
2726
return Caml_array.caml_array_set(struct_, idx, shape[0]);
28-
}
29-
else {
27+
} else {
3028
var comps = shape[0];
3129
var v = /* array */[];
3230
Caml_array.caml_array_set(struct_, idx, v);

lib/js/camlinternalOO.js

+3-6
Original file line numberDiff line numberDiff line change
@@ -534,8 +534,7 @@ function set_method(table, label, element) {
534534
var element$1 = element;
535535
resize(array, label$1 + 1 | 0);
536536
return Caml_array.caml_array_set(array[/* methods */1], label$1, element$1);
537-
}
538-
else {
537+
} else {
539538
table[/* hidden_meths */5] = /* :: */[
540539
/* tuple */[
541540
label,
@@ -554,8 +553,7 @@ function get_method(table, label) {
554553
catch (exn){
555554
if (exn === Caml_builtin_exceptions.not_found) {
556555
return Caml_array.caml_array_get(table[/* methods */1], label);
557-
}
558-
else {
556+
} else {
559557
throw exn;
560558
}
561559
}
@@ -903,8 +901,7 @@ function build_path(n, keys, tables) {
903901
function lookup_keys(i, keys, tables) {
904902
if (i < 0) {
905903
return tables;
906-
}
907-
else {
904+
} else {
908905
var key = Caml_array.caml_array_get(keys, i);
909906
var _tables = tables;
910907
while(true) {

lib/js/hashtbl.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,7 @@ function resize(indexfun, h) {
139139
param[1],
140140
Caml_array.caml_array_get(ndata, nidx)
141141
]);
142-
}
143-
else {
142+
} else {
144143
return /* () */0;
145144
}
146145
};

lib/js/js_json.js

+6-12
Original file line numberDiff line numberDiff line change
@@ -41,53 +41,47 @@ function test(x, v) {
4141
function decodeString(json) {
4242
if (typeof json === "string") {
4343
return /* Some */[json];
44-
}
45-
else {
44+
} else {
4645
return /* None */0;
4746
}
4847
}
4948

5049
function decodeNumber(json) {
5150
if (typeof json === "number") {
5251
return /* Some */[json];
53-
}
54-
else {
52+
} else {
5553
return /* None */0;
5654
}
5755
}
5856

5957
function decodeObject(json) {
6058
if (typeof json === "object" && !Array.isArray(json) && json !== null) {
6159
return /* Some */[json];
62-
}
63-
else {
60+
} else {
6461
return /* None */0;
6562
}
6663
}
6764

6865
function decodeArray(json) {
6966
if (Array.isArray(json)) {
7067
return /* Some */[json];
71-
}
72-
else {
68+
} else {
7369
return /* None */0;
7470
}
7571
}
7672

7773
function decodeBoolean(json) {
7874
if (typeof json === "boolean") {
7975
return /* Some */[json];
80-
}
81-
else {
76+
} else {
8277
return /* None */0;
8378
}
8479
}
8580

8681
function decodeNull(json) {
8782
if (json === null) {
8883
return /* Some */[null];
89-
}
90-
else {
84+
} else {
9185
return /* None */0;
9286
}
9387
}

lib/js/parsing.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,7 @@ function yyparse(tables, start, lexer, lexbuf) {
143143
current_lookahead_fun[0] = function (tok) {
144144
if (tok.length !== undefined) {
145145
return +(Caml_array.caml_array_get(tables[/* transl_block */2], tok.tag | 0) === curr_char);
146-
}
147-
else {
146+
} else {
148147
return +(Caml_array.caml_array_get(tables[/* transl_const */1], tok) === curr_char);
149148
}
150149
};
@@ -163,8 +162,7 @@ function symbol_start_pos() {
163162
var i = _i;
164163
if (i <= 0) {
165164
return Caml_array.caml_array_get(env[/* symb_end_stack */3], env[/* asp */10]);
166-
}
167-
else {
165+
} else {
168166
var st = Caml_array.caml_array_get(env[/* symb_start_stack */2], (env[/* asp */10] - i | 0) + 1 | 0);
169167
var en = Caml_array.caml_array_get(env[/* symb_end_stack */3], (env[/* asp */10] - i | 0) + 1 | 0);
170168
if (Caml_obj.caml_notequal(st, en)) {

lib/js/weak.js

+4-8
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,7 @@ function Make(H) {
192192
if (prev_len) {
193193
Caml_obj.caml_obj_truncate(bucket, prev_len + 1 | 0);
194194
Caml_obj.caml_obj_truncate(hbucket, prev_len);
195-
}
196-
else {
195+
} else {
197196
Caml_array.caml_array_set(t[/* table */0], t[/* rover */4], emptybucket);
198197
Caml_array.caml_array_set(t[/* hashes */1], t[/* rover */4], /* int array */[]);
199198
}
@@ -289,8 +288,7 @@ function Make(H) {
289288
var i = _i;
290289
if (i >= sz) {
291290
return Curry._2(ifnotfound, h, index);
292-
}
293-
else if (h === Caml_array.caml_array_get(hashes, i)) {
291+
} else if (h === Caml_array.caml_array_get(hashes, i)) {
294292
var match = Caml_weak.caml_weak_get_copy(bucket, i);
295293
if (match) {
296294
if (Curry._2(H[/* equal */0], match[0], d)) {
@@ -341,8 +339,7 @@ function Make(H) {
341339
var i = _i;
342340
if (i >= sz) {
343341
return ifnotfound;
344-
}
345-
else if (h === Caml_array.caml_array_get(hashes, i)) {
342+
} else if (h === Caml_array.caml_array_get(hashes, i)) {
346343
var match = Caml_weak.caml_weak_get_copy(bucket, i);
347344
if (match) {
348345
if (Curry._2(H[/* equal */0], match[0], d)) {
@@ -387,8 +384,7 @@ function Make(H) {
387384
var i = _i;
388385
if (i >= sz) {
389386
return accu;
390-
}
391-
else if (h === Caml_array.caml_array_get(hashes, i)) {
387+
} else if (h === Caml_array.caml_array_get(hashes, i)) {
392388
var match = Caml_weak.caml_weak_get_copy(bucket, i);
393389
if (match) {
394390
if (Curry._2(H[/* equal */0], match[0], d)) {

0 commit comments

Comments
 (0)