forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbb.js
82 lines (73 loc) · 1.21 KB
/
bb.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
'use strict';
function f(x) {
if (x === "b") {
return "b";
} else if (x === "c") {
return "c";
} else {
return "a";
}
}
function ff(x) {
switch (x) {
case "a" :
return "a";
case "b" :
return "b";
case "c" :
return "c";
default:
throw {
RE_EXN_ID: "Assert_failure",
_1: [
"bb.ml",
17,
9
],
Error: new Error()
};
}
}
function test(x) {
var match;
switch (x) {
case "a" :
match = "a";
break;
case "b" :
match = "b";
break;
case "c" :
match = "c";
break;
default:
throw {
RE_EXN_ID: "Assert_failure",
_1: [
"bb.ml",
26,
13
],
Error: new Error()
};
}
if (match === "b") {
return "b";
} else if (match === "c") {
return "c";
} else {
return "a";
}
}
var test_poly = "a";
var c = f("a");
var d = f("b");
var e = f("c");
exports.f = f;
exports.ff = ff;
exports.test = test;
exports.test_poly = test_poly;
exports.c = c;
exports.d = d;
exports.e = e;
/* c Not a pure module */