Skip to content
Snippets Groups Projects
Commit 311acd5a authored by charguer's avatar charguer
Browse files

module

parent f900e79d
No related branches found
No related tags found
No related merge requests found
...@@ -398,8 +398,9 @@ and js_of_structure_item s = ...@@ -398,8 +398,9 @@ and js_of_structure_item s =
match s.str_desc with match s.str_desc with
| Tstr_eval (e, _) -> Printf.sprintf "%s" @@ js_of_expression ctx_initial Dest_ignore e | Tstr_eval (e, _) -> Printf.sprintf "%s" @@ js_of_expression ctx_initial Dest_ignore e
| Tstr_value (_, vb_l) -> String.concat "@,@," @@ List.map (fun vb -> | Tstr_value (_, vb_l) -> String.concat "@,@," @@ List.map (fun vb ->
let (id, sdecl) = show_value_binding ctx_initial vb in (* let (id, sdecl) = show_value_binding ctx_initial vb in *)
sdecl) @@ vb_l Printf.sprintf "@\n@\n%s: %s," (ident_of_pat vb.vb_pat) (js_of_expression_inline_or_wrap ctx_initial vb.vb_expr))
@@ vb_l
| Tstr_type _ -> "" (* Types have no representation in JS, but the OCaml type checker uses them *) | Tstr_type _ -> "" (* Types have no representation in JS, but the OCaml type checker uses them *)
| Tstr_open _ -> "" (* Handle modules by use of multiple compilation/linking *) | Tstr_open _ -> "" (* Handle modules by use of multiple compilation/linking *)
| Tstr_modtype _ -> "" | Tstr_modtype _ -> ""
...@@ -461,8 +462,7 @@ and js_of_expression ctx dest e = ...@@ -461,8 +462,7 @@ and js_of_expression ctx dest e =
in in
let arg_ids, body = explore [c.c_lhs] c.c_rhs in let arg_ids, body = explore [c.c_lhs] c.c_rhs in
let newctx = ctx_fresh() in let newctx = ctx_fresh() in
let newdest = Dest_return in let sbody = js_of_expression newctx Dest_return body in
let sbody = js_of_expression newctx newdest body in
let sexp = generate_logged_enter arg_ids ctx newctx sbody in let sexp = generate_logged_enter arg_ids ctx newctx sbody in
apply_dest ctx dest sexp apply_dest ctx dest sexp
......
...@@ -3,7 +3,7 @@ let testa x = ...@@ -3,7 +3,7 @@ let testa x =
x x
let testb x = let testb x =
let x = x in x let a = x in a
let testc x = let testc x =
let y = x in let y = x in
...@@ -33,7 +33,7 @@ let testg x = ...@@ -33,7 +33,7 @@ let testg x =
let test0 = let test0 f =
match Some 3 with match Some 3 with
| None -> 2 | None -> 2
| Some y -> y | Some y -> y
...@@ -80,4 +80,6 @@ let test6 = ...@@ -80,4 +80,6 @@ let test6 =
(* (*
let test6 (x,y) = let test6 (x,y) =
x x
*) *)
\ No newline at end of file
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment