diff options
author | simonm <unknown> | 1998-02-03 17:16:13 +0000 |
---|---|---|
committer | simonm <unknown> | 1998-02-03 17:16:13 +0000 |
commit | be33dbc967b4915cfdb0307ae1b7ae3cee651b8c (patch) | |
tree | e24ad0b966727772172a1c47fa89c06cd671e507 /ghc/compiler/hsSyn/HsBinds.lhs | |
parent | c29022c49449b7d8862dcc2259e16cafe9461945 (diff) | |
download | haskell-be33dbc967b4915cfdb0307ae1b7ae3cee651b8c.tar.gz |
[project @ 1998-02-03 17:13:54 by simonm]
- Fixes for bootstrapping with 3.01.
- Use 'official' extension interfaces rather than internal prelude
modules (such as ArrBase) where possible.
- Remove some cruft.
- Delete some unused imports found by '-fwarn-unused-imports'.
Diffstat (limited to 'ghc/compiler/hsSyn/HsBinds.lhs')
-rw-r--r-- | ghc/compiler/hsSyn/HsBinds.lhs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ghc/compiler/hsSyn/HsBinds.lhs b/ghc/compiler/hsSyn/HsBinds.lhs index d020b76baf..b5578034d0 100644 --- a/ghc/compiler/hsSyn/HsBinds.lhs +++ b/ghc/compiler/hsSyn/HsBinds.lhs @@ -14,13 +14,12 @@ import {-# SOURCE #-} HsExpr ( pprExpr, HsExpr ) import {-# SOURCE #-} HsMatches ( pprMatches, Match, pprGRHSsAndBinds, GRHSsAndBinds ) -- friends: -import HsPragmas ( GenPragmas, ClassOpPragmas ) import HsTypes ( HsType ) import CoreSyn ( CoreExpr ) import PprCore () -- Instances for Outputable --others: -import Id ( DictVar, Id, GenId ) +import Id ( Id, GenId ) import Name ( OccName, NamedThing(..) ) import BasicTypes ( RecFlag(..) ) import Outputable |