File tree Expand file tree Collapse file tree 5 files changed +4
-13
lines changed
compiler/tests-check-prim Expand file tree Collapse file tree 5 files changed +4
-13
lines changed Original file line number Diff line number Diff line change @@ -122,7 +122,6 @@ From +mlBytes.js:
122122caml_array_of_bytes
123123caml_array_of_string
124124caml_bytes_of_utf16_jsstring
125- caml_new_string
126125caml_string_concat
127126caml_to_js_string
128127
Original file line number Diff line number Diff line change @@ -231,7 +231,6 @@ From +mlBytes.js:
231231caml_array_of_bytes
232232caml_array_of_string
233233caml_bytes_of_utf16_jsstring
234- caml_new_string
235234caml_string_concat
236235caml_to_js_string
237236
Original file line number Diff line number Diff line change @@ -196,7 +196,6 @@ From +mlBytes.js:
196196caml_array_of_bytes
197197caml_array_of_string
198198caml_bytes_of_utf16_jsstring
199- caml_new_string
200199caml_string_concat
201200caml_to_js_string
202201
Original file line number Diff line number Diff line change @@ -883,12 +883,6 @@ function caml_js_to_byte_string(s) {
883883 return caml_string_of_jsbytes ( s ) ;
884884}
885885
886- //Provides: caml_new_string
887- //Requires: caml_string_of_jsbytes
888- function caml_new_string ( s ) {
889- return caml_string_of_jsbytes ( s ) ;
890- }
891-
892886//Provides: caml_js_from_string mutable (const)
893887//Requires: caml_jsstring_of_string
894888function caml_js_from_string ( s ) {
Original file line number Diff line number Diff line change 11//Provides: caml_lxm_M
22//Requires: caml_int64_of_string
3- //Requires: caml_new_string
3+ //Requires: caml_string_of_jsstring
44//Version: >= 5
5- var caml_lxm_M = caml_int64_of_string ( caml_new_string ( "0xd1342543de82ef95" ) ) ;
5+ var caml_lxm_M = caml_int64_of_string ( caml_string_of_jsstring ( "0xd1342543de82ef95" ) ) ;
66
77//Provides: caml_lxm_daba
88//Requires: caml_int64_of_string
9- //Requires: caml_new_string
9+ //Requires: caml_string_of_jsstring
1010//Version: >= 5
11- var caml_lxm_daba = caml_int64_of_string ( caml_new_string ( "0xdaba0b6eb09322e3" ) ) ;
11+ var caml_lxm_daba = caml_int64_of_string ( caml_string_of_jsstring ( "0xdaba0b6eb09322e3" ) ) ;
1212
1313//Provides: caml_lxm_next
1414//Requires: caml_int64_shift_left
You can’t perform that action at this time.
0 commit comments