Skip to content

Commit 93a3325

Browse files
authored
Fix dprint when dealing with infix values (whatever that is) (#957)
1 parent 84f30d8 commit 93a3325

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/boot/lib/intrinsics.ml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -635,6 +635,7 @@ module IO = struct
635635
else if Obj.tag v = Obj.double_tag then
636636
string_of_float (Obj.obj v) ^ "\n"
637637
else if Obj.tag v = Obj.closure_tag then "<closure>\n"
638+
else if Obj.tag v = Obj.infix_tag then "<infix>\n"
638639
else if Obj.tag v = Obj.unaligned_tag then "<unaligned>\n"
639640
else
640641
let istr = String.make indent ' ' in

0 commit comments

Comments
 (0)