Skip to content

Commit 71cab5c

Browse files
committed
WIP: no longer write shape files
1 parent d136ce0 commit 71cab5c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

compiler/bin-js_of_ocaml/compile.ml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,11 @@ let output_gen
6060
match output_file with
6161
| `Stdout -> ()
6262
| `Name name ->
63-
Shape.Store.save'
64-
(Filename.remove_extension name ^ Shape.Store.ext)
65-
(StringMap.bindings shapes));
63+
if false
64+
then
65+
Shape.Store.save'
66+
(Filename.remove_extension name ^ Shape.Store.ext)
67+
(StringMap.bindings shapes));
6668
match source_map, sm with
6769
| None, _ | _, None -> ()
6870
| Some { output_file = output; source_map; keep_empty }, Some sm ->

0 commit comments

Comments
 (0)