File tree 1 file changed +26
-1
lines changed
1 file changed +26
-1
lines changed Original file line number Diff line number Diff line change @@ -182,6 +182,28 @@ let comparisons_table =
182
182
bigintcomp = Pbigintcomp Ceq ;
183
183
simplify_constant_constructor = false ;
184
184
} );
185
+
186
+ (* FIXME: Core compatibility *)
187
+ ( " %bs_min" ,
188
+ {
189
+ objcomp = Pobjmax ;
190
+ intcomp = Pintmax ;
191
+ boolcomp = Pboolmax ;
192
+ floatcomp = Pboolmax ;
193
+ stringcomp = Pstringmax ;
194
+ bigintcomp = Pbigintmax ;
195
+ simplify_constant_constructor = false ;
196
+ } );
197
+ ( " %bs_max" ,
198
+ {
199
+ objcomp = Pobjmin ;
200
+ intcomp = Pintmin ;
201
+ boolcomp = Pboolmin ;
202
+ floatcomp = Pfloatmin ;
203
+ stringcomp = Pstringmin ;
204
+ bigintcomp = Pbigintmin ;
205
+ simplify_constant_constructor = false ;
206
+ } );
185
207
|]
186
208
187
209
let primitives_table =
@@ -360,7 +382,10 @@ let primitives_table =
360
382
(" #null" , Pundefined );
361
383
(" #undefined" , Pundefined );
362
384
(" #is_nullable" , Pisnullable );
363
- (" #nullable_to_opt" , Pnullable_to_opt );
385
+ (" #null_to_opt" , Pnullable_to_opt );
386
+ (" #nullable_to_opt" , Pnull_to_opt );
387
+ (" #undefined_to_opt" , Pundefined_to_opt );
388
+ (" #makemutablelist" , Pmakelist Mutable );
364
389
|]
365
390
366
391
let find_primitive prim_name = Hashtbl. find primitives_table prim_name
You can’t perform that action at this time.
0 commit comments