File tree Expand file tree Collapse file tree 5 files changed +6
-20
lines changed Expand file tree Collapse file tree 5 files changed +6
-20
lines changed Original file line number Diff line number Diff line change @@ -88713,7 +88713,7 @@ and expression_desc cxt ~(level:int) f x : cxt =
88713
88713
else []
88714
88714
) in
88715
88715
if p.num_nonconst = 1 then tails
88716
- else (" tag" ,
88716
+ else (L. tag,
88717
88717
if !Js_config.debug then tag else {tag with comment = Some p.name}) :: tails in
88718
88718
if p.num_nonconst = 1 && not !Js_config.debug then
88719
88719
pp_comment_option f (Some p.name);
@@ -88728,7 +88728,7 @@ and expression_desc cxt ~(level:int) f x : cxt =
88728
88728
if p.num_nonconst = 1 then
88729
88729
tails
88730
88730
else
88731
- (" tag" ,
88731
+ (L. tag,
88732
88732
if !Js_config.debug then tag else {tag with comment = Some p.name}) :: tails
88733
88733
in
88734
88734
if p.num_nonconst = 1 && not !Js_config.debug then
Original file line number Diff line number Diff line change @@ -88713,7 +88713,7 @@ and expression_desc cxt ~(level:int) f x : cxt =
88713
88713
else []
88714
88714
) in
88715
88715
if p.num_nonconst = 1 then tails
88716
- else (" tag" ,
88716
+ else (L. tag,
88717
88717
if !Js_config.debug then tag else {tag with comment = Some p.name}) :: tails in
88718
88718
if p.num_nonconst = 1 && not !Js_config.debug then
88719
88719
pp_comment_option f (Some p.name);
@@ -88728,7 +88728,7 @@ and expression_desc cxt ~(level:int) f x : cxt =
88728
88728
if p.num_nonconst = 1 then
88729
88729
tails
88730
88730
else
88731
- (" tag" ,
88731
+ (L. tag,
88732
88732
if !Js_config.debug then tag else {tag with comment = Some p.name}) :: tails
88733
88733
in
88734
88734
if p.num_nonconst = 1 && not !Js_config.debug then
Original file line number Diff line number Diff line change @@ -381923,7 +381923,7 @@ and expression_desc cxt ~(level:int) f x : cxt =
381923
381923
else []
381924
381924
) in
381925
381925
if p.num_nonconst = 1 then tails
381926
- else (" tag" ,
381926
+ else (L. tag,
381927
381927
if !Js_config.debug then tag else {tag with comment = Some p.name}) :: tails in
381928
381928
if p.num_nonconst = 1 && not !Js_config.debug then
381929
381929
pp_comment_option f (Some p.name);
@@ -381938,7 +381938,7 @@ and expression_desc cxt ~(level:int) f x : cxt =
381938
381938
if p.num_nonconst = 1 then
381939
381939
tails
381940
381940
else
381941
- (" tag" ,
381941
+ (L. tag,
381942
381942
if !Js_config.debug then tag else {tag with comment = Some p.name}) :: tails
381943
381943
in
381944
381944
if p.num_nonconst = 1 && not !Js_config.debug then
Original file line number Diff line number Diff line change @@ -5,12 +5,6 @@ import * as Caml_primitive from "./caml_primitive.js";
5
5
var for_in = ( function ( o , foo ) {
6
6
for ( var x in o ) { foo ( x ) } } ) ;
7
7
8
- function caml_obj_block ( tag , size ) {
9
- var v = new Array ( size ) ;
10
- v . tag = tag ;
11
- return v ;
12
- }
13
-
14
8
var caml_obj_dup = ( function ( x ) {
15
9
if ( Array . isArray ( x ) ) {
16
10
var len = x . length
@@ -405,7 +399,6 @@ function caml_obj_set_tag(prim, prim$1) {
405
399
}
406
400
407
401
export {
408
- caml_obj_block ,
409
402
caml_obj_dup ,
410
403
update_dummy ,
411
404
caml_compare ,
Original file line number Diff line number Diff line change @@ -5,12 +5,6 @@ var Caml_primitive = require("./caml_primitive.js");
5
5
var for_in = ( function ( o , foo ) {
6
6
for ( var x in o ) { foo ( x ) } } ) ;
7
7
8
- function caml_obj_block ( tag , size ) {
9
- var v = new Array ( size ) ;
10
- v . tag = tag ;
11
- return v ;
12
- }
13
-
14
8
var caml_obj_dup = ( function ( x ) {
15
9
if ( Array . isArray ( x ) ) {
16
10
var len = x . length
@@ -404,7 +398,6 @@ function caml_obj_set_tag(prim, prim$1) {
404
398
405
399
}
406
400
407
- exports . caml_obj_block = caml_obj_block ;
408
401
exports . caml_obj_dup = caml_obj_dup ;
409
402
exports . update_dummy = update_dummy ;
410
403
exports . caml_compare = caml_compare ;
You can’t perform that action at this time.
0 commit comments