[project @ 2001-07-12 16:21:22 by simonpj]
[ghc-hetmet.git] / ghc / compiler / deSugar / DsHsSyn.lhs
1 %
2 % (c) The AQUA Project, Glasgow University, 1996-1998
3 %
4 \section[DsHsSyn]{Haskell abstract syntax---added things for desugarer}
5
6 \begin{code}
7 module DsHsSyn where
8
9 #include "HsVersions.h"
10
11 import HsSyn            ( OutPat(..), MonoBinds(..) )
12 import TcHsSyn          ( TypecheckedPat,
13                           TypecheckedMonoBinds )
14
15 import Id               ( idType, Id )
16 import Type             ( Type )
17 \end{code}
18