aboutsummaryrefslogtreecommitdiff
path: root/typecheck
diff options
context:
space:
mode:
authorTom Smeding <tom.smeding@gmail.com>2020-07-24 22:24:44 +0200
committerTom Smeding <tom.smeding@gmail.com>2020-07-24 22:24:44 +0200
commitd951a11b1141b9f4c1ee50c7f89b68c552883c16 (patch)
treea3097eab42081e5af45e516a3e3c8c956503bd57 /typecheck
parentea681150783d1feae265a045edefaeb0e10dd8c7 (diff)
Move CC.{Source,Typed} to CC.AST.*
Diffstat (limited to 'typecheck')
-rw-r--r--typecheck/CC/Typecheck.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/typecheck/CC/Typecheck.hs b/typecheck/CC/Typecheck.hs
index 455465a..195fc19 100644
--- a/typecheck/CC/Typecheck.hs
+++ b/typecheck/CC/Typecheck.hs
@@ -10,9 +10,9 @@ import Data.Maybe
import qualified Data.Set as Set
import Data.Set (Set)
+import CC.AST.Source
+import CC.AST.Typed
import CC.Pretty
-import CC.Source
-import CC.Typed
-- Inspiration: https://github.com/kritzcreek/fby19