forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathes6_module_test.js
46 lines (42 loc) · 987 Bytes
/
es6_module_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
// Generated CODE, PLEASE EDIT WITH CARE
'use strict';
var Mt = require("./mt");
var List = require("../stdlib/list");
function length() {
return 3;
}
Mt.from_pair_suites("es6_module_test.ml", /* :: */[
/* tuple */[
"list_length",
function () {
return /* Eq */{
0: List.length(/* :: */[
1,
/* :: */[
2,
/* [] */0
]
]),
1: 2,
length: 2,
tag: 0
};
}
],
/* :: */[
/* tuple */[
"length",
function () {
return /* Eq */{
0: 3,
1: 3,
length: 2,
tag: 0
};
}
],
/* [] */0
]
]);
exports.length = length;
/* Not a pure module */