diff options
author | romes <rodrigo.m.mesquita@gmail.com> | 2022-05-14 12:12:19 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-07-03 14:11:31 -0400 |
commit | 3a8970ac0c69335a1d229f9c9a71e6e333e99bfb (patch) | |
tree | 28a786d6e3bbc40b068cc7fe10433a9a8037b1d6 /compiler/Language/Haskell/Syntax | |
parent | 9e79f6d09c9fbd81150a45d307f753141453c945 (diff) | |
download | haskell-3a8970ac0c69335a1d229f9c9a71e6e333e99bfb.tar.gz |
TTG: Move HsModule to L.H.S
Move the definition of HsModule defined in GHC.Hs to
Language.Haskell.Syntax with an added TTG parameter and corresponding
extension fields.
This is progress towards having the haskell-syntax package, as described
in #21592
Diffstat (limited to 'compiler/Language/Haskell/Syntax')
-rw-r--r-- | compiler/Language/Haskell/Syntax/Extension.hs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/compiler/Language/Haskell/Syntax/Extension.hs b/compiler/Language/Haskell/Syntax/Extension.hs index 47b693a9bd..f63ca09b30 100644 --- a/compiler/Language/Haskell/Syntax/Extension.hs +++ b/compiler/Language/Haskell/Syntax/Extension.hs @@ -397,6 +397,12 @@ type family XCInjectivityAnn x type family XXInjectivityAnn x -- ===================================================================== +-- Type families for the HsModule extension points + +type family XModule x +type family XXModule x + +-- ===================================================================== -- Type families for the HsExpr extension points type family XVar x |