diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2020-01-26 03:15:37 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-02-14 05:32:37 -0500 |
commit | cf739945b8b28ff463dc44925348f20b3c1f22cb (patch) | |
tree | 855da097719d6b62a15fa12034c60379c49dc4a5 /compiler/prelude | |
parent | af6a0c36431639655762440ec8d652796b86fe58 (diff) | |
download | haskell-cf739945b8b28ff463dc44925348f20b3c1f22cb.tar.gz |
Module hierarchy: HsToCore (cf #13009)
Diffstat (limited to 'compiler/prelude')
-rw-r--r-- | compiler/prelude/THNames.hs | 4 | ||||
-rw-r--r-- | compiler/prelude/TysWiredIn.hs | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/compiler/prelude/THNames.hs b/compiler/prelude/THNames.hs index 0da1c5200a..4b38dbc39a 100644 --- a/compiler/prelude/THNames.hs +++ b/compiler/prelude/THNames.hs @@ -24,7 +24,7 @@ import FastString templateHaskellNames :: [Name] -- The names that are implicitly mentioned by ``bracket'' --- Should stay in sync with the import list of DsMeta +-- Should stay in sync with the import list of GHC.HsToCore.Quote templateHaskellNames = [ returnQName, bindQName, sequenceQName, newNameName, liftName, liftTypedName, @@ -562,7 +562,7 @@ decsQTyConName = libTc (fsLit "DecsQ") decsQTyConKey -- Q [De typeQTyConName = libTc (fsLit "TypeQ") typeQTyConKey patQTyConName = libTc (fsLit "PatQ") patQTyConKey --- These are used in DsMeta but always wrapped in a type variable +-- These are used in GHC.HsToCore.Quote but always wrapped in a type variable stmtTyConName = thTc (fsLit "Stmt") stmtTyConKey conTyConName = thTc (fsLit "Con") conTyConKey bangTypeTyConName = thTc (fsLit "BangType") bangTypeTyConKey diff --git a/compiler/prelude/TysWiredIn.hs b/compiler/prelude/TysWiredIn.hs index bec29ebc76..a14fcc0732 100644 --- a/compiler/prelude/TysWiredIn.hs +++ b/compiler/prelude/TysWiredIn.hs @@ -702,7 +702,7 @@ Note [One-tuples] GHC supports both boxed and unboxed one-tuples: - Unboxed one-tuples are sometimes useful when returning a single value after CPR analysis - - A boxed one-tuple is used by DsUtils.mkSelectorBinds, when + - A boxed one-tuple is used by GHC.HsToCore.Utils.mkSelectorBinds, when there is just one binder Basically it keeps everything uniform. |