diff options
author | Alan Zimmerman <alan.zimm@gmail.com> | 2017-01-10 17:01:50 +0200 |
---|---|---|
committer | Alan Zimmerman <alan.zimm@gmail.com> | 2017-01-10 17:04:23 +0200 |
commit | 1a6bdca01b7ac214d8aca52927e14547395697e8 (patch) | |
tree | b895b9f72753d2ab662425cc982f2cc533c5a26d /compiler/hsSyn | |
parent | a8a714ea6787f5717ca3ddf0f81ebba8d7ccca4d (diff) | |
download | haskell-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.hs | 2 |
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) |