diff options
author | Tom Smeding <tom.smeding@gmail.com> | 2020-07-24 22:24:44 +0200 |
---|---|---|
committer | Tom Smeding <tom.smeding@gmail.com> | 2020-07-24 22:24:44 +0200 |
commit | d951a11b1141b9f4c1ee50c7f89b68c552883c16 (patch) | |
tree | a3097eab42081e5af45e516a3e3c8c956503bd57 /ast | |
parent | ea681150783d1feae265a045edefaeb0e10dd8c7 (diff) |
Move CC.{Source,Typed} to CC.AST.*
Diffstat (limited to 'ast')
-rw-r--r-- | ast/CC/AST/Source.hs (renamed from ast/CC/Source.hs) | 2 | ||||
-rw-r--r-- | ast/CC/AST/Typed.hs (renamed from ast/CC/Typed.hs) | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ast/CC/Source.hs b/ast/CC/AST/Source.hs index c10f910..3d7d5ea 100644 --- a/ast/CC/Source.hs +++ b/ast/CC/AST/Source.hs @@ -1,4 +1,4 @@ -module CC.Source(module CC.Source, module CC.Types) where +module CC.AST.Source(module CC.AST.Source, module CC.Types) where import Data.List diff --git a/ast/CC/Typed.hs b/ast/CC/AST/Typed.hs index 53caa29..f4c4d56 100644 --- a/ast/CC/Typed.hs +++ b/ast/CC/AST/Typed.hs @@ -1,5 +1,5 @@ -module CC.Typed( - module CC.Typed, +module CC.AST.Typed( + module CC.AST.Typed, module CC.Types ) where |