diff options
author | Vladislav Zavialov <vlad.z.4096@gmail.com> | 2019-02-14 00:36:00 +0300 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-02-15 07:29:05 -0500 |
commit | 887454d8889ca5dbba70425de41d97939cb9ac60 (patch) | |
tree | 6d7d57ee977f58fcceed0d59a95bcfdf057551dc /compiler/prelude/PrelNames.hs | |
parent | b31df5caaebb1c4f72a3c70a9cdb7893af4c3309 (diff) | |
download | haskell-887454d8889ca5dbba70425de41d97939cb9ac60.tar.gz |
'forall' always a keyword, plus the dot type operator
Diffstat (limited to 'compiler/prelude/PrelNames.hs')
-rw-r--r-- | compiler/prelude/PrelNames.hs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/prelude/PrelNames.hs b/compiler/prelude/PrelNames.hs index 94bb928cc2..600eb2ba4d 100644 --- a/compiler/prelude/PrelNames.hs +++ b/compiler/prelude/PrelNames.hs @@ -645,10 +645,6 @@ main_RDR_Unqual = mkUnqual varName (fsLit "main") -- We definitely don't want an Orig RdrName, because -- main might, in principle, be imported into module Main -forall_tv_RDR, dot_tv_RDR :: RdrName -forall_tv_RDR = mkUnqual tvName (fsLit "forall") -dot_tv_RDR = mkUnqual tvName (fsLit ".") - eq_RDR, ge_RDR, le_RDR, lt_RDR, gt_RDR, compare_RDR, ltTag_RDR, eqTag_RDR, gtTag_RDR :: RdrName eq_RDR = nameRdrName eqName |