File tree Expand file tree Collapse file tree 7 files changed +9
-9
lines changed Expand file tree Collapse file tree 7 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -60,4 +60,4 @@ let set_byte e e0 e1 = E.assign (E.array_index e e0) e1
6060 ]}
6161*)
6262let bytes_to_string e =
63- E. runtime_call Js_runtime_modules. bytes_ " bytes_to_string " [ e ]
63+ E. runtime_call Js_runtime_modules. bytes_ " to_string " [ e ]
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ var Bytes = require("../../lib/js/bytes.js");
44
55var f = Bytes . unsafe_to_string ;
66
7- var ff = Bytes . bytes_to_string ;
7+ var ff = Bytes . to_string ;
88
99exports . f = f ;
1010exports . ff = ff ;
Original file line number Diff line number Diff line change @@ -94664,7 +94664,7 @@ let set_byte e e0 e1 = E.assign (E.array_index e e0) e1
9466494664 ]}
9466594665*)
9466694666let bytes_to_string e =
94667- E.runtime_call Js_runtime_modules.bytes_ "bytes_to_string " [ e ]
94667+ E.runtime_call Js_runtime_modules.bytes_ "to_string " [ e ]
9466894668
9466994669end
9467094670module Lam_compile_const : sig
Original file line number Diff line number Diff line change @@ -94664,7 +94664,7 @@ let set_byte e e0 e1 = E.assign (E.array_index e e0) e1
9466494664 ]}
9466594665*)
9466694666let bytes_to_string e =
94667- E.runtime_call Js_runtime_modules.bytes_ "bytes_to_string " [ e ]
94667+ E.runtime_call Js_runtime_modules.bytes_ "to_string " [ e ]
9466894668
9466994669end
9467094670module Lam_compile_const : sig
Original file line number Diff line number Diff line change @@ -263935,7 +263935,7 @@ let set_byte e e0 e1 = E.assign (E.array_index e e0) e1
263935263935 ]}
263936263936*)
263937263937let bytes_to_string e =
263938- E.runtime_call Js_runtime_modules.bytes_ "bytes_to_string " [ e ]
263938+ E.runtime_call Js_runtime_modules.bytes_ "to_string " [ e ]
263939263939
263940263940end
263941263941module Lam_compile_const : sig
Original file line number Diff line number Diff line change @@ -64,11 +64,11 @@ function escaped(c) {
6464 s [ 1 ] = 48 + ( c / 100 | 0 ) | 0 ;
6565 s [ 2 ] = 48 + ( c / 10 | 0 ) % 10 | 0 ;
6666 s [ 3 ] = 48 + c % 10 | 0 ;
67- return Bytes . bytes_to_string ( s ) ;
67+ return Bytes . to_string ( s ) ;
6868 case 2 :
6969 var s$1 = [ 0 ] ;
7070 s$1 [ 0 ] = c ;
71- return Bytes . bytes_to_string ( s$1 ) ;
71+ return Bytes . to_string ( s$1 ) ;
7272
7373 }
7474}
Original file line number Diff line number Diff line change @@ -64,11 +64,11 @@ function escaped(c) {
6464 s [ 1 ] = 48 + ( c / 100 | 0 ) | 0 ;
6565 s [ 2 ] = 48 + ( c / 10 | 0 ) % 10 | 0 ;
6666 s [ 3 ] = 48 + c % 10 | 0 ;
67- return Bytes . bytes_to_string ( s ) ;
67+ return Bytes . to_string ( s ) ;
6868 case 2 :
6969 var s$1 = [ 0 ] ;
7070 s$1 [ 0 ] = c ;
71- return Bytes . bytes_to_string ( s$1 ) ;
71+ return Bytes . to_string ( s$1 ) ;
7272
7373 }
7474}
You can’t perform that action at this time.
0 commit comments