1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
(* Js_of_ocaml tests
* http://www.ocsigen.org/js_of_ocaml/
* Copyright (C) 2019 Ty Overby
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*)
open Js_of_ocaml_compiler
module Filetype : Filetype_intf.S
val with_temp_dir : f:(unit -> 'a) -> 'a
val parse_js : Filetype.js_file -> Javascript.program
val compile_ocaml_to_cmo : ?debug:bool -> Filetype.ocaml_file -> Filetype.cmo_file
val compile_ocaml_to_bc :
?debug:bool -> ?unix:bool -> Filetype.ocaml_file -> Filetype.bc_file
val compile_lib : Filetype.cmo_file list -> string -> Filetype.cmo_file
val compile_cmo_to_javascript :
?flags:string list
-> ?effects:bool
-> ?use_js_string:bool
-> ?pretty:bool
-> ?sourcemap:bool
-> Filetype.cmo_file
-> Filetype.js_file
val compile_bc_to_javascript :
?flags:string list
-> ?effects:bool
-> ?use_js_string:bool
-> ?pretty:bool
-> ?sourcemap:bool
-> Filetype.bc_file
-> Filetype.js_file
val jsoo_minify :
?flags:string list -> pretty:bool -> Filetype.js_file -> Filetype.js_file
val extract_sourcemap : Filetype.js_file -> Js_of_ocaml_compiler.Source_map.t option
val run_javascript : Filetype.js_file -> string
val check_javascript : Filetype.js_file -> string
val check_javascript_source : string -> string
val expression_to_string : ?compact:bool -> Javascript.expression -> string
val print_file : string -> unit
val print_program : Javascript.program -> unit
val print_var_decl : Javascript.program -> string -> unit
val print_fun_decl : Javascript.program -> string option -> unit
val find_variable : Javascript.program -> string -> Javascript.expression
val find_function : Javascript.program -> string -> Javascript.function_declaration
val compile_and_run :
?debug:bool
-> ?pretty:bool
-> ?skip_modern:bool
-> ?flags:string list
-> ?effects:bool
-> ?use_js_string:bool
-> ?unix:bool
-> string
-> unit
val compile_and_run_bytecode : ?unix:bool -> string -> unit
val compile_and_parse :
?debug:bool
-> ?pretty:bool
-> ?flags:string list
-> ?effects:bool
-> ?use_js_string:bool
-> string
-> Javascript.program
val compile_and_parse_whole_program :
?debug:bool
-> ?pretty:bool
-> ?flags:string list
-> ?effects:bool
-> ?use_js_string:bool
-> ?unix:bool
-> string
-> Javascript.program
val normalize_path : string -> string
|