We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f125fdd commit c9dedb6Copy full SHA for c9dedb6
compiler/core/js_exp_make.ml
@@ -1622,7 +1622,7 @@ let unchecked_int32_mul ?comment e1 e2 : J.expression =
1622
let int32_pow ?comment (e1 : t) (e2 : t) : J.expression =
1623
match (e1.expression_desc, e2.expression_desc) with
1624
| Number (Int {i = i1}), Number (Int {i = i2}) ->
1625
- to_int32 (int ?comment (Ext_int.int32_pow i1 i2))
+ int ?comment (Ext_int.int32_pow i1 i2)
1626
| _ -> to_int32 (float_pow ?comment e1 e2)
1627
1628
let rec int32_bxor ?comment (e1 : t) (e2 : t) : J.expression =
0 commit comments