Skip to content

Commit 95dafb1

Browse files
committed
runtime: fix requires
1 parent 1c78b71 commit 95dafb1

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

runtime/lexing.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function caml_lex_array(s) {
2727
}
2828

2929
//Provides: caml_lex_engine
30-
//Requires: caml_failwith, caml_lex_array, caml_uint8_array_of_bytes
30+
//Requires: caml_failwith, caml_lex_array
3131
//Requires: caml_bytes_unsafe_get
3232
function caml_lex_engine(tbl, start_state, lexbuf) {
3333
var lex_buffer = 2;
@@ -106,7 +106,7 @@ function caml_lex_engine(tbl, start_state, lexbuf) {
106106

107107
//Provides: caml_new_lex_engine
108108
//Requires: caml_failwith, caml_lex_array
109-
//Requires: caml_jsbytes_of_string, caml_uint8_array_of_bytes
109+
//Requires: caml_jsbytes_of_string
110110
//Requires: caml_bytes_unsafe_get
111111
function caml_lex_run_mem(s, i, mem, curr_pos) {
112112
for (;;) {

runtime/mlBytes.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,6 @@ function caml_uint8_array_of_bytes(s) {
502502
}
503503

504504
//Provides: caml_uint8_array_of_string mutable
505-
//Requires: caml_convert_bytes_to_array
506505
//Requires: caml_ml_string_length, caml_string_unsafe_get
507506
function caml_uint8_array_of_string(s) {
508507
var l = caml_ml_string_length(s);

0 commit comments

Comments
 (0)