bs-platform
Version:
ReScript compiler, OCaml standard libary by ReScript and its required runtime support
77 lines (64 loc) • 1.93 kB
JavaScript
import * as Caml_bytes from "./caml_bytes.js";
import * as Caml_external_polyfill from "./caml_external_polyfill.js";
function to_buffer(buff, ofs, len, v, flags) {
if (ofs < 0 || len < 0 || ofs > (buff.length - len | 0)) {
throw {
RE_EXN_ID: "Invalid_argument",
_1: "Marshal.to_buffer: substring out of bounds",
Error: new Error()
};
}
return Caml_external_polyfill.resolve("caml_output_value_to_buffer")(buff, ofs, len, v, flags);
}
function data_size(buff, ofs) {
if (ofs < 0 || ofs > (buff.length - 20 | 0)) {
throw {
RE_EXN_ID: "Invalid_argument",
_1: "Marshal.data_size",
Error: new Error()
};
}
return Caml_external_polyfill.resolve("caml_marshal_data_size")(buff, ofs);
}
function total_size(buff, ofs) {
return 20 + data_size(buff, ofs) | 0;
}
function from_bytes(buff, ofs) {
if (ofs < 0 || ofs > (buff.length - 20 | 0)) {
throw {
RE_EXN_ID: "Invalid_argument",
_1: "Marshal.from_bytes",
Error: new Error()
};
}
var len = Caml_external_polyfill.resolve("caml_marshal_data_size")(buff, ofs);
if (ofs > (buff.length - (20 + len | 0) | 0)) {
throw {
RE_EXN_ID: "Invalid_argument",
_1: "Marshal.from_bytes",
Error: new Error()
};
}
return Caml_external_polyfill.resolve("caml_input_value_from_string")(buff, ofs);
}
function from_string(buff, ofs) {
return from_bytes(Caml_bytes.bytes_of_string(buff), ofs);
}
function to_channel(prim, prim$1, prim$2) {
return Caml_external_polyfill.resolve("caml_output_value")(prim, prim$1, prim$2);
}
function from_channel(prim) {
return Caml_external_polyfill.resolve("caml_input_value")(prim);
}
var header_size = 20;
export {
to_channel ,
to_buffer ,
from_channel ,
from_bytes ,
from_string ,
header_size ,
data_size ,
total_size ,
}
/* No side effect */