-
Notifications
You must be signed in to change notification settings - Fork 464
/
Copy pathdiv_by_zero_test.js
129 lines (115 loc) · 2.9 KB
/
div_by_zero_test.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
// Generated by ReScript, PLEASE EDIT WITH CARE
'use strict';
var Mt = require("./mt.js");
var Caml_int32 = require("../../lib/js/caml_int32.js");
var Caml_int64 = require("../../lib/js/caml_int64.js");
var suites = {
contents: /* [] */0
};
var test_id = {
contents: 0
};
function eq(loc, x, y) {
test_id.contents = test_id.contents + 1 | 0;
suites.contents = {
hd: [
loc + (" id " + String(test_id.contents)),
(function (param) {
return {
TAG: "Eq",
_0: x,
_1: y
};
})
],
tl: suites.contents
};
}
function add(suite) {
suites.contents = {
hd: suite,
tl: suites.contents
};
}
add([
"File \"div_by_zero_test.res\", line 11, characters 7-14",
(function (param) {
return {
TAG: "ThrowAny",
_0: (function (param) {
Caml_int32.div(3, 0);
})
};
})
]);
add([
"File \"div_by_zero_test.res\", line 12, characters 7-14",
(function (param) {
return {
TAG: "ThrowAny",
_0: (function (param) {
Caml_int32.mod_(3, 0);
})
};
})
]);
add([
"File \"div_by_zero_test.res\", line 13, characters 7-14",
(function (param) {
return {
TAG: "ThrowAny",
_0: (function (param) {
Caml_int32.div(3, 0);
})
};
})
]);
add([
"File \"div_by_zero_test.res\", line 14, characters 7-14",
(function (param) {
return {
TAG: "ThrowAny",
_0: (function (param) {
Caml_int32.mod_(3, 0);
})
};
})
]);
add([
"File \"div_by_zero_test.res\", line 15, characters 7-14",
(function (param) {
return {
TAG: "ThrowAny",
_0: (function (param) {
Caml_int64.div([
0,
3
], Caml_int64.zero);
})
};
})
]);
add([
"File \"div_by_zero_test.res\", line 16, characters 7-14",
(function (param) {
return {
TAG: "ThrowAny",
_0: (function (param) {
Caml_int64.mod_([
0,
3
], Caml_int64.zero);
})
};
})
]);
function div(x, y) {
return Caml_int32.div(x, y) + 3 | 0;
}
Mt.from_pair_suites("Div_by_zero_test", suites.contents);
exports.suites = suites;
exports.test_id = test_id;
exports.eq = eq;
exports.add = add;
exports.div = div;
/* Not a pure module */