Skip to content

Commit d53e401

Browse files
committed
1 parent 9a1182b commit d53e401

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

compiler/lib/wasm/wa_link.ml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -510,28 +510,28 @@ let build_runtime_arguments
510510
Javascript.call
511511
(EArrow
512512
( Javascript.fun_
513-
[ Javascript.ident Constant.global_object_ ]
513+
[ Javascript.ident Global_constant.global_object_ ]
514514
[ var
515-
Constant.old_global_object_
516-
(EVar (Javascript.ident Constant.global_object_))
515+
Global_constant.old_global_object_
516+
(EVar (Javascript.ident Global_constant.global_object_))
517517
; var
518-
Constant.exports_
518+
Global_constant.exports_
519519
(EBin
520520
( Or
521521
, EDot
522522
( EDot
523-
( EVar (Javascript.ident Constant.global_object_)
523+
( EVar (Javascript.ident Global_constant.global_object_)
524524
, ANullish
525525
, Utf8_string.of_string_exn "module" )
526526
, ANullish
527527
, Utf8_string.of_string_exn "export" )
528-
, EVar (Javascript.ident Constant.global_object_) ))
528+
, EVar (Javascript.ident Global_constant.global_object_) ))
529529
; Return_statement (Some (obj generated_js)), N
530530
]
531531
N
532532
, true
533533
, AUnknown ))
534-
[ EVar (Javascript.ident Constant.global_object_) ]
534+
[ EVar (Javascript.ident Global_constant.global_object_) ]
535535
N
536536
in
537537
obj

0 commit comments

Comments
 (0)