summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2019-01-18 11:36:12 -0500
committerMarge Bot <ben+marge-bot@smart-cactus.org>2019-01-20 09:19:42 -0500
commit6e7aa5e937b18a45ee39c8c67b7a2f7350b89a66 (patch)
tree1b9a03982e4127596728859f1d70490071bdebe4
parent800d77e882f24066a7f6d818b2606ad8a0e79e02 (diff)
downloadhaskell-6e7aa5e937b18a45ee39c8c67b7a2f7350b89a66.tar.gz
Remove TODO in HsExpr
It is correct to be `GhcTc` as the data type is for expressions which are inside splices so they can be delayed until desugaring.
-rw-r--r--compiler/hsSyn/HsExpr.hs1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/hsSyn/HsExpr.hs b/compiler/hsSyn/HsExpr.hs
index 41bbdb2a62..bae29b0dfb 100644
--- a/compiler/hsSyn/HsExpr.hs
+++ b/compiler/hsSyn/HsExpr.hs
@@ -2486,7 +2486,6 @@ data UntypedSpliceFlavour
-- | Pending Type-checker Splice
data PendingTcSplice
- -- AZ:TODO: The hard-coded GhcTc feels wrong.
= PendingTcSplice SplicePointName (LHsExpr GhcTc)
{-