-
Notifications
You must be signed in to change notification settings - Fork 465
/
Copy pathtest_pervasives2.js
155 lines (148 loc) · 4.36 KB
/
test_pervasives2.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
'use strict';
var List = require("../../lib/js/list.js");
var Stack = require("../../lib/js/stack.js");
var Pervasives = require("../../lib/js/pervasives.js");
var List$1 = {
length: List.length,
compare_lengths: List.compare_lengths,
compare_length_with: List.compare_length_with,
cons: List.cons,
hd: List.hd,
tl: List.tl,
nth: List.nth,
nth_opt: List.nth_opt,
rev: List.rev,
init: List.init,
append: List.append,
rev_append: List.rev_append,
concat: List.concat,
flatten: List.flatten,
iter: List.iter,
iteri: List.iteri,
map: List.map,
mapi: List.mapi,
rev_map: List.rev_map,
fold_left: List.fold_left,
fold_right: List.fold_right,
iter2: List.iter2,
map2: List.map2,
rev_map2: List.rev_map2,
fold_left2: List.fold_left2,
fold_right2: List.fold_right2,
for_all: List.for_all,
exists: List.exists,
for_all2: List.for_all2,
exists2: List.exists2,
mem: List.mem,
memq: List.memq,
find: List.find,
find_opt: List.find_opt,
filter: List.filter,
find_all: List.find_all,
partition: List.partition,
assoc: List.assoc,
assoc_opt: List.assoc_opt,
assq: List.assq,
assq_opt: List.assq_opt,
mem_assoc: List.mem_assoc,
mem_assq: List.mem_assq,
remove_assoc: List.remove_assoc,
remove_assq: List.remove_assq,
split: List.split,
combine: List.combine,
sort: List.sort,
stable_sort: List.stable_sort,
fast_sort: List.fast_sort,
sort_uniq: List.sort_uniq,
merge: List.merge,
Jsx: Pervasives.Jsx,
JsxEvent: Pervasives.JsxEvent,
JsxDOM: Pervasives.JsxDOM,
JsxPPXReactSupport: Pervasives.JsxPPXReactSupport,
JsxModules: Pervasives.JsxModules,
invalid_arg: Pervasives.invalid_arg,
failwith: Pervasives.failwith,
Exit: Pervasives.Exit,
abs: Pervasives.abs,
max_int: Pervasives.max_int,
min_int: Pervasives.min_int,
lnot: Pervasives.lnot,
infinity: Pervasives.infinity,
neg_infinity: Pervasives.neg_infinity,
max_float: Pervasives.max_float,
min_float: Pervasives.min_float,
epsilon_float: Pervasives.epsilon_float,
classify_float: Pervasives.classify_float,
char_of_int: Pervasives.char_of_int,
string_of_bool: Pervasives.string_of_bool,
bool_of_string: Pervasives.bool_of_string,
bool_of_string_opt: Pervasives.bool_of_string_opt,
int_of_string_opt: Pervasives.int_of_string_opt,
string_of_float: Pervasives.string_of_float,
float_of_string_opt: Pervasives.float_of_string_opt,
$at: Pervasives.$at,
print_string: Pervasives.print_string,
print_int: Pervasives.print_int,
print_float: Pervasives.print_float,
print_newline: Pervasives.print_newline,
prerr_newline: Pervasives.prerr_newline,
exit: Pervasives.exit,
at_exit: Pervasives.at_exit,
valid_float_lexem: Pervasives.valid_float_lexem
};
var U = {
Empty: Stack.Empty,
create: Stack.create,
push: Stack.push,
pop: Stack.pop,
top: Stack.top,
clear: Stack.clear,
copy: Stack.copy,
is_empty: Stack.is_empty,
length: Stack.length,
iter: Stack.iter,
fold: Stack.fold,
Jsx: Pervasives.Jsx,
JsxEvent: Pervasives.JsxEvent,
JsxDOM: Pervasives.JsxDOM,
JsxPPXReactSupport: Pervasives.JsxPPXReactSupport,
JsxModules: Pervasives.JsxModules,
invalid_arg: Pervasives.invalid_arg,
failwith: Pervasives.failwith,
Exit: Pervasives.Exit,
abs: Pervasives.abs,
max_int: Pervasives.max_int,
min_int: Pervasives.min_int,
lnot: Pervasives.lnot,
infinity: Pervasives.infinity,
neg_infinity: Pervasives.neg_infinity,
max_float: Pervasives.max_float,
min_float: Pervasives.min_float,
epsilon_float: Pervasives.epsilon_float,
classify_float: Pervasives.classify_float,
char_of_int: Pervasives.char_of_int,
string_of_bool: Pervasives.string_of_bool,
bool_of_string: Pervasives.bool_of_string,
bool_of_string_opt: Pervasives.bool_of_string_opt,
int_of_string_opt: Pervasives.int_of_string_opt,
string_of_float: Pervasives.string_of_float,
float_of_string_opt: Pervasives.float_of_string_opt,
$at: Pervasives.$at,
print_string: Pervasives.print_string,
print_int: Pervasives.print_int,
print_float: Pervasives.print_float,
print_newline: Pervasives.print_newline,
prerr_newline: Pervasives.prerr_newline,
exit: Pervasives.exit,
at_exit: Pervasives.at_exit,
valid_float_lexem: Pervasives.valid_float_lexem
};
var f = Pervasives.$at;
var ff = List.length;
var fff = Pervasives.$at;
exports.List = List$1;
exports.U = U;
exports.f = f;
exports.ff = ff;
exports.fff = fff;
/* No side effect */