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/THNames.hs | |
parent | af6a0c36431639655762440ec8d652796b86fe58 (diff) | |
download | haskell-cf739945b8b28ff463dc44925348f20b3c1f22cb.tar.gz |
Module hierarchy: HsToCore (cf #13009)
Diffstat (limited to 'compiler/prelude/THNames.hs')
-rw-r--r-- | compiler/prelude/THNames.hs | 4 |
1 files changed, 2 insertions, 2 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 |