From 068cd6f7dbbbf214d7b87c0daa3b51f1db56bcc5 Mon Sep 17 00:00:00 2001 From: James Cheney Date: Mon, 18 Mar 2024 14:45:58 +0000 Subject: [PATCH] undo previous change --- bin/driver.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/driver.ml b/bin/driver.ml index e9598bb1a..67a00c3e2 100644 --- a/bin/driver.ml +++ b/bin/driver.ml @@ -162,7 +162,7 @@ module Phases = struct = fun initial_context filename -> (* Process source file (and its dependencies. *) let result = - (Debug.debug_time "Parsing" (fun () -> Parse.run initial_context filename)) + Parse.run initial_context filename |> Desugar.run |> (fun result -> if Settings.get typecheck_only then exit 0 else result) |> Compile.IR.run