summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2019-01-18 11:36:12 -0500
committerMatthew Pickering <matthewtpickering@gmail.com>2019-01-18 11:36:12 -0500
commit7efe4135f3ba04531fb2871937b9a2cff70100df (patch)
tree5c4114998228045787eb2fdc8c8f525f69735b61
parent8c3133a6e513c6f311df489deb3ae89938b27b08 (diff)
downloadhaskell-wip/hs-expr-todo.tar.gz
Remove TODO in HsExprwip/hs-expr-todo
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)
{-