diff options
author | romes <rodrigo.m.mesquita@gmail.com> | 2022-03-18 15:49:19 +0000 |
---|---|---|
committer | romes <rodrigo.m.mesquita@gmail.com> | 2022-03-18 15:49:19 +0000 |
commit | 3f5bf447efd22787b5f05ee000a133ea09958049 (patch) | |
tree | e5cee3a06b1488dc20a7858dfabd72d18ead8d08 | |
parent | 435a3d5df098099ec984847b84f0bc734f5d2c3f (diff) | |
download | haskell-wip/romes/remove-hsdorn.tar.gz |
Remove dead code HsDoRnwip/romes/remove-hsdorn
-rw-r--r-- | compiler/GHC/Hs/Expr.hs | 2 | ||||
-rw-r--r-- | compiler/Language/Haskell/Syntax/Expr.hs | 4 |
2 files changed, 0 insertions, 6 deletions
diff --git a/compiler/GHC/Hs/Expr.hs b/compiler/GHC/Hs/Expr.hs index c14a23f794..accdd189ec 100644 --- a/compiler/GHC/Hs/Expr.hs +++ b/compiler/GHC/Hs/Expr.hs @@ -183,8 +183,6 @@ data HsWrap hs_syn = HsWrap HsWrapper -- the wrapper deriving instance (Data (hs_syn GhcTc), Typeable hs_syn) => Data (HsWrap hs_syn) -type instance HsDoRn (GhcPass _) = GhcRn - -- --------------------------------------------------------------------- {- diff --git a/compiler/Language/Haskell/Syntax/Expr.hs b/compiler/Language/Haskell/Syntax/Expr.hs index 2d5d407092..555450abbb 100644 --- a/compiler/Language/Haskell/Syntax/Expr.hs +++ b/compiler/Language/Haskell/Syntax/Expr.hs @@ -633,10 +633,6 @@ data HsExpr p -- general idea, and Note [Rebindable syntax and HsExpansion] in GHC.Hs.Expr -- for an example of how we use it. --- | The AST used to hard-refer to GhcPass, which was a layer violation. For now, --- we paper it over with this new extension point. -type family HsDoRn p - -- --------------------------------------------------------------------- data DotFieldOcc p |