summaryrefslogtreecommitdiff
path: root/compiler/hsSyn
diff options
context:
space:
mode:
authorAlan Zimmerman <alan.zimm@gmail.com>2017-01-10 17:01:50 +0200
committerAlan Zimmerman <alan.zimm@gmail.com>2017-01-10 17:04:23 +0200
commit1a6bdca01b7ac214d8aca52927e14547395697e8 (patch)
treeb895b9f72753d2ab662425cc982f2cc533c5a26d /compiler/hsSyn
parenta8a714ea6787f5717ca3ddf0f81ebba8d7ccca4d (diff)
downloadhaskell-1a6bdca01b7ac214d8aca52927e14547395697e8.tar.gz
Make HsIParamTy have a Located HsIPName
To simplify API Annotations. Updates haddock submodule
Diffstat (limited to 'compiler/hsSyn')
-rw-r--r--compiler/hsSyn/HsTypes.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/hsSyn/HsTypes.hs b/compiler/hsSyn/HsTypes.hs
index 53f200fab4..7dc3d1217f 100644
--- a/compiler/hsSyn/HsTypes.hs
+++ b/compiler/hsSyn/HsTypes.hs
@@ -497,7 +497,7 @@ data HsType name
-- For details on above see note [Api annotations] in ApiAnnotation
- | HsIParamTy HsIPName -- (?x :: ty)
+ | HsIParamTy (Located HsIPName) -- (?x :: ty)
(LHsType name) -- Implicit parameters as they occur in contexts
-- ^
-- > (?x :: ty)