diff options
Diffstat (limited to 'src/Main.hs')
-rw-r--r-- | src/Main.hs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Main.hs b/src/Main.hs index 393fb69..fb2a1f2 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -13,6 +13,7 @@ import Language.Fiddle.Compiler import Language.Fiddle.Compiler.ConsistencyCheck import Language.Fiddle.Compiler.Expansion import Language.Fiddle.Compiler.ImportResolution +import Language.Fiddle.Compiler.Qualification import Language.Fiddle.Compiler.Stage0 import Language.Fiddle.GenericTree ( GenericSyntaxTree (..), @@ -29,7 +30,10 @@ import System.IO -- compilationPipeline :: _ -> _ -> CompilationPhase Parsed Checked compilationPipeline parse compile = - importResolutionPhase parse compile >>> expansionPhase >>> consistencyCheckPhase + importResolutionPhase parse compile + >>> expansionPhase + >>> qualificationPhase + >>> consistencyCheckPhase -- | Global flags for the compiler. newtype GlobalFlags = GlobalFlags |