Skip to content

Commit 743fab2

Browse files
committed
remove debug log
1 parent dff6374 commit 743fab2

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

compiler/syntax/src/res_parens.ml

-2
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,6 @@ let sub_binary_expr_operand parent_operator child_operator =
151151
let open ParsetreeViewer in
152152
let prec_parent = operator_precedence parent_operator in
153153
let prec_child = operator_precedence child_operator in
154-
Printf.eprintf "parent %s, %d; child %s, %d" parent_operator prec_parent
155-
child_operator prec_child;
156154
prec_parent > prec_child
157155
|| is_equality_operator parent_operator
158156
&& is_equality_operator child_operator

0 commit comments

Comments
 (0)