We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 641120d commit 3bf84feCopy full SHA for 3bf84fe
src/compiler/compiler.ml
@@ -310,7 +310,10 @@ let do_type ctx mctx actx display_file_dot_path =
310
com.callbacks#run com.error_ext com.callbacks#get_after_init_macros;
311
run_or_diagnose ctx (fun () ->
312
if com.display.dms_kind <> DMNone then DisplayTexpr.check_display_file tctx cs;
313
- List.iter (fun cpath -> ignore(tctx.Typecore.g.Typecore.do_load_module tctx cpath null_pos)) (List.rev actx.classes);
+ List.iter (fun cpath ->
314
+ ignore(tctx.Typecore.g.Typecore.do_load_module tctx cpath null_pos);
315
+ Typecore.flush_pass tctx.g (PBuildClass:Typecore.typer_pass) "actx.classes"
316
+ ) (List.rev actx.classes);
317
Finalization.finalize tctx;
318
);
319
end with TypeloadParse.DisplayInMacroBlock ->
0 commit comments