forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathof_string_test.js
55 lines (49 loc) · 1 KB
/
of_string_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
// Generated CODE, PLEASE EDIT WITH CARE
'use strict';
var Pervasives = require("../stdlib/pervasives");
var Mt = require("./mt");
var suites_000 = /* tuple */[
"string_of_float_1",
function () {
return /* Eq */{
0: "10.",
1: Pervasives.string_of_float(10),
length: 2,
tag: 0
};
}
];
var suites_001 = /* :: */[
/* tuple */[
"string_of_int",
function () {
return /* Eq */{
0: "10",
1: "" + 10,
length: 2,
tag: 0
};
}
],
/* :: */[
/* tuple */[
"valid_float_lexem",
function () {
return /* Eq */{
0: "10.",
1: Pervasives.valid_float_lexem("10"),
length: 2,
tag: 0
};
}
],
/* [] */0
]
];
var suites = /* :: */[
suites_000,
suites_001
];
Mt.from_pair_suites("of_string_test.ml", suites);
exports.suites = suites;
/* Not a pure module */