diff options
author | Richard Eisenberg <rae@richarde.dev> | 2020-11-25 15:00:36 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-12-01 19:57:41 -0500 |
commit | d66660ba4c491f9937a1a959b009d90f08a4fbee (patch) | |
tree | d19b712885c85435577ce13e5289296a6a0ae360 /compiler/ghc.cabal.in | |
parent | 8bb52d9186655134e3e06b4dc003e060379f5417 (diff) | |
download | haskell-d66660ba4c491f9937a1a959b009d90f08a4fbee.tar.gz |
Rename the flattener to become the rewriter.
Now that flattening doesn't produce flattening variables,
it's not really flattening anything: it's rewriting. This
change also means that the rewriter can no longer be confused
the core flattener (in GHC.Core.Unify), which is sometimes used
during type-checking.
Diffstat (limited to 'compiler/ghc.cabal.in')
-rw-r--r-- | compiler/ghc.cabal.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/ghc.cabal.in b/compiler/ghc.cabal.in index ffee979a90..86b86774a4 100644 --- a/compiler/ghc.cabal.in +++ b/compiler/ghc.cabal.in @@ -592,7 +592,7 @@ Library GHC.Tc.Plugin GHC.Tc.Solver GHC.Tc.Solver.Canonical - GHC.Tc.Solver.Flatten + GHC.Tc.Solver.Rewrite GHC.Tc.Solver.Interact GHC.Tc.Solver.Monad GHC.Tc.TyCl |