ocamljs
ocamljs copied to clipboard
Javascript back-end for OCamlc
Is it completely abandoned? Is there a relation to js_of_ocaml? Just to inform the interested github reader. Thanks.
Hi Jake, I've removed the trampoline arity restriction to accomodate curried object constructors with many arguments. I've also added caml_mod_float and fixed a string literal printing bug (the native caml_is_printable...
The following code crashes the ocamljs compiler: ``` let f o = o#_get_x 1 ``` it says: ``` Fatal error: exception Failure("bad method call") ``` while the following equivalent code...
Pervasives.max_int and min_int have the following incorrect value, respectively: 1073741823 and 1073741824. They are apparently not maximum or minimum integer in the JavaScript. Though this might not be a bug...