File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ type ml_module_info = {
41
41
42
42
type env_value =
43
43
| Visit of ml_module_info
44
- | Runtime of bool * path * Js_cmj_format .t
44
+ | Runtime of path * Js_cmj_format .t
45
45
(* *
46
46
[Runtime (pure, path, cmj_format)]
47
47
A built in module probably from our runtime primitives,
@@ -175,7 +175,7 @@ let query_and_add_if_not_exist
175
175
| Runtime ->
176
176
let (cmj_path, cmj_table) as cmj_info =
177
177
Js_cmj_load. find_cmj_exn (Lam_module_ident. name oid ^ Literals. suffix_cmj) in
178
- oid +> Runtime (true , cmj_path,cmj_table) ;
178
+ oid +> Runtime (cmj_path,cmj_table) ;
179
179
(match env with
180
180
| Has_env _ ->
181
181
found { pure = true }
@@ -220,10 +220,10 @@ let query_and_add_if_not_exist
220
220
| No_env -> found (cmj_path,cmj_table)
221
221
end
222
222
223
- | Some (Runtime (pure , cmj_path ,cmj_table )) ->
223
+ | Some (Runtime (cmj_path ,cmj_table )) ->
224
224
begin match env with
225
225
| Has_env _ ->
226
- found {pure }
226
+ found {pure = true }
227
227
| No_env ->
228
228
found (cmj_path, cmj_table)
229
229
end
Original file line number Diff line number Diff line change @@ -96613,7 +96613,7 @@ type ml_module_info = {
96613
96613
96614
96614
type env_value =
96615
96615
| Visit of ml_module_info
96616
- | Runtime of bool * path * Js_cmj_format.t
96616
+ | Runtime of path * Js_cmj_format.t
96617
96617
(**
96618
96618
[Runtime (pure, path, cmj_format)]
96619
96619
A built in module probably from our runtime primitives,
@@ -96747,7 +96747,7 @@ let query_and_add_if_not_exist
96747
96747
| Runtime ->
96748
96748
let (cmj_path, cmj_table) as cmj_info =
96749
96749
Js_cmj_load.find_cmj_exn (Lam_module_ident.name oid ^ Literals.suffix_cmj) in
96750
- oid +> Runtime (true, cmj_path,cmj_table) ;
96750
+ oid +> Runtime (cmj_path,cmj_table) ;
96751
96751
(match env with
96752
96752
| Has_env _ ->
96753
96753
found { pure = true}
@@ -96792,10 +96792,10 @@ let query_and_add_if_not_exist
96792
96792
| No_env -> found (cmj_path,cmj_table)
96793
96793
end
96794
96794
96795
- | Some (Runtime (pure, cmj_path,cmj_table)) ->
96795
+ | Some (Runtime (cmj_path,cmj_table)) ->
96796
96796
begin match env with
96797
96797
| Has_env _ ->
96798
- found {pure }
96798
+ found {pure = true }
96799
96799
| No_env ->
96800
96800
found (cmj_path, cmj_table)
96801
96801
end
Original file line number Diff line number Diff line change @@ -84134,7 +84134,7 @@ type ml_module_info = {
84134
84134
84135
84135
type env_value =
84136
84136
| Visit of ml_module_info
84137
- | Runtime of bool * path * Js_cmj_format.t
84137
+ | Runtime of path * Js_cmj_format.t
84138
84138
(**
84139
84139
[Runtime (pure, path, cmj_format)]
84140
84140
A built in module probably from our runtime primitives,
@@ -84268,7 +84268,7 @@ let query_and_add_if_not_exist
84268
84268
| Runtime ->
84269
84269
let (cmj_path, cmj_table) as cmj_info =
84270
84270
Js_cmj_load.find_cmj_exn (Lam_module_ident.name oid ^ Literals.suffix_cmj) in
84271
- oid +> Runtime (true, cmj_path,cmj_table) ;
84271
+ oid +> Runtime (cmj_path,cmj_table) ;
84272
84272
(match env with
84273
84273
| Has_env _ ->
84274
84274
found { pure = true}
@@ -84313,10 +84313,10 @@ let query_and_add_if_not_exist
84313
84313
| No_env -> found (cmj_path,cmj_table)
84314
84314
end
84315
84315
84316
- | Some (Runtime (pure, cmj_path,cmj_table)) ->
84316
+ | Some (Runtime (cmj_path,cmj_table)) ->
84317
84317
begin match env with
84318
84318
| Has_env _ ->
84319
- found {pure }
84319
+ found {pure = true }
84320
84320
| No_env ->
84321
84321
found (cmj_path, cmj_table)
84322
84322
end
You can’t perform that action at this time.
0 commit comments