diff options
author | Alan Zimmerman <alan.zimm@gmail.com> | 2017-01-10 16:59:38 +0200 |
---|---|---|
committer | Alan Zimmerman <alan.zimm@gmail.com> | 2017-01-10 16:59:38 +0200 |
commit | b19ea3ababeb231157c4a067c43003e09b1f0185 (patch) | |
tree | c07da8e5cf77711bd80482290c4fab48b8731bf6 /haddock-api/src/Haddock/Convert.hs | |
parent | b34497c36cd01a9c8a08ec3133ec94783642e43d (diff) |
HsIParamTy now has a Located name
Diffstat (limited to 'haddock-api/src/Haddock/Convert.hs')
-rw-r--r-- | haddock-api/src/Haddock/Convert.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haddock-api/src/Haddock/Convert.hs b/haddock-api/src/Haddock/Convert.hs index 6cf77de0..87a273b2 100644 --- a/haddock-api/src/Haddock/Convert.hs +++ b/haddock-api/src/Haddock/Convert.hs @@ -399,7 +399,7 @@ synifyType _ (TyConApp tc tys) | tc `hasKey` ipClassKey , [name, ty] <- tys , Just x <- isStrLitTy name - = noLoc $ HsIParamTy (HsIPName x) (synifyType WithinType ty) + = noLoc $ HsIParamTy (noLoc $ HsIPName x) (synifyType WithinType ty) -- and equalities | tc `hasKey` eqTyConKey , [ty1, ty2] <- tys |