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 /parser/CC | |
parent | ea681150783d1feae265a045edefaeb0e10dd8c7 (diff) |
Move CC.{Source,Typed} to CC.AST.*
Diffstat (limited to 'parser/CC')
-rw-r--r-- | parser/CC/Parser.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parser/CC/Parser.hs b/parser/CC/Parser.hs index a097f98..f8e482e 100644 --- a/parser/CC/Parser.hs +++ b/parser/CC/Parser.hs @@ -4,8 +4,8 @@ import Control.Monad import Text.Parsec hiding (SourcePos, getPosition, token) import qualified Text.Parsec +import CC.AST.Source import CC.Pretty -import CC.Source type Parser a = Parsec String () a |