diff options
author | Vladislav Zavialov <vlad.z.4096@gmail.com> | 2022-04-01 14:33:55 +0300 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-04-08 13:56:27 -0400 |
commit | 3415981c36631115bc1d7fb5b51abfcc2932a12f (patch) | |
tree | 9546cc5fa07432c16aa60902250a1ad19a6c227c /compiler/Language | |
parent | 85f4a3c9c2635e71a9ab0b723774ec993fefb93d (diff) | |
download | haskell-3415981c36631115bc1d7fb5b51abfcc2932a12f.tar.gz |
HsUniToken for :: in GADT constructors (#19623)
One more step towards the new design of EPA.
Updates the haddock submodule.
Diffstat (limited to 'compiler/Language')
-rw-r--r-- | compiler/Language/Haskell/Syntax/Decls.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/Language/Haskell/Syntax/Decls.hs b/compiler/Language/Haskell/Syntax/Decls.hs index baeef95b17..026080d3f6 100644 --- a/compiler/Language/Haskell/Syntax/Decls.hs +++ b/compiler/Language/Haskell/Syntax/Decls.hs @@ -1054,7 +1054,7 @@ data ConDecl pass = ConDeclGADT { con_g_ext :: XConDeclGADT pass , con_names :: [LIdP pass] - + , con_dcolon :: !(LHsUniToken "::" "∷" pass) -- The following fields describe the type after the '::' -- See Note [GADT abstract syntax] , con_bndrs :: XRec pass (HsOuterSigTyVarBndrs pass) |