File tree 7 files changed +9
-9
lines changed
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
60
60
]}
61
61
*)
62
62
let 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");
4
4
5
5
var f = Bytes . unsafe_to_string ;
6
6
7
- var ff = Bytes . bytes_to_string ;
7
+ var ff = Bytes . to_string ;
8
8
9
9
exports . f = f ;
10
10
exports . ff = ff ;
Original file line number Diff line number Diff line change @@ -94849,7 +94849,7 @@ let set_byte e e0 e1 = E.assign (E.array_index e e0) e1
94849
94849
]}
94850
94850
*)
94851
94851
let bytes_to_string e =
94852
- E.runtime_call Js_runtime_modules.bytes_ "bytes_to_string " [ e ]
94852
+ E.runtime_call Js_runtime_modules.bytes_ "to_string " [ e ]
94853
94853
94854
94854
end
94855
94855
module Lam_compile_const : sig
Original file line number Diff line number Diff line change @@ -94849,7 +94849,7 @@ let set_byte e e0 e1 = E.assign (E.array_index e e0) e1
94849
94849
]}
94850
94850
*)
94851
94851
let bytes_to_string e =
94852
- E.runtime_call Js_runtime_modules.bytes_ "bytes_to_string " [ e ]
94852
+ E.runtime_call Js_runtime_modules.bytes_ "to_string " [ e ]
94853
94853
94854
94854
end
94855
94855
module Lam_compile_const : sig
Original file line number Diff line number Diff line change @@ -264120,7 +264120,7 @@ let set_byte e e0 e1 = E.assign (E.array_index e e0) e1
264120
264120
]}
264121
264121
*)
264122
264122
let bytes_to_string e =
264123
- E.runtime_call Js_runtime_modules.bytes_ "bytes_to_string " [ e ]
264123
+ E.runtime_call Js_runtime_modules.bytes_ "to_string " [ e ]
264124
264124
264125
264125
end
264126
264126
module Lam_compile_const : sig
Original file line number Diff line number Diff line change @@ -64,11 +64,11 @@ function escaped(c) {
64
64
s [ 1 ] = 48 + ( c / 100 | 0 ) | 0 ;
65
65
s [ 2 ] = 48 + ( c / 10 | 0 ) % 10 | 0 ;
66
66
s [ 3 ] = 48 + c % 10 | 0 ;
67
- return Bytes . bytes_to_string ( s ) ;
67
+ return Bytes . to_string ( s ) ;
68
68
case 2 :
69
69
var s$1 = [ 0 ] ;
70
70
s$1 [ 0 ] = c ;
71
- return Bytes . bytes_to_string ( s$1 ) ;
71
+ return Bytes . to_string ( s$1 ) ;
72
72
73
73
}
74
74
}
Original file line number Diff line number Diff line change @@ -64,11 +64,11 @@ function escaped(c) {
64
64
s [ 1 ] = 48 + ( c / 100 | 0 ) | 0 ;
65
65
s [ 2 ] = 48 + ( c / 10 | 0 ) % 10 | 0 ;
66
66
s [ 3 ] = 48 + c % 10 | 0 ;
67
- return Bytes . bytes_to_string ( s ) ;
67
+ return Bytes . to_string ( s ) ;
68
68
case 2 :
69
69
var s$1 = [ 0 ] ;
70
70
s$1 [ 0 ] = c ;
71
- return Bytes . bytes_to_string ( s$1 ) ;
71
+ return Bytes . to_string ( s$1 ) ;
72
72
73
73
}
74
74
}
You can’t perform that action at this time.
0 commit comments