[Git][ghc/ghc][master] Deprecate GHC.JS.Prim.Internal.Build (#23432)

Marge Bot pushed to branch master at Glasgow Haskell Compiler / GHC Commits: 88ee8bb5 by Sylvain Henry at 2025-05-14T04:26:15-04:00 Deprecate GHC.JS.Prim.Internal.Build (#23432) Deprecated as per CLC proposal 329 (https://github.com/haskell/core-libraries-committee/issues/329) - - - - - 2 changed files: - libraries/base/changelog.md - libraries/base/src/GHC/JS/Prim/Internal/Build.hs Changes: ===================================== libraries/base/changelog.md ===================================== @@ -21,6 +21,7 @@ * `GHC.TypeLits.Internal` * `GHC.TypeNats.Internal` * `GHC.ExecutionStack.Internal`. + * Deprecate `GHC.JS.Prim.Internal.Build`, as per [CLC #329](https://github.com/haskell/core-libraries-committee/issues/329) ## 4.21.0.0 *TBA* * Change `SrcLoc` to be a strict and unboxed (finishing [CLC proposal #55](https://github.com/haskell/core-libraries-committee/issues/55)) ===================================== libraries/base/src/GHC/JS/Prim/Internal/Build.hs ===================================== @@ -1,12 +1,12 @@ {-# LANGUAGE CPP #-} +module GHC.JS.Prim.Internal.Build + {-# DEPRECATED "Use ghc-internal:GHC.Internal.JS.Prim.Internal.Build instead" #-} + -- deprecated for now. To be fully removed in GHC 9.16 + -- see https://github.com/haskell/core-libraries-committee/issues/329 and #23432 #if !defined(javascript_HOST_ARCH) - -module GHC.JS.Prim.Internal.Build () where - + () where #else - -module GHC.JS.Prim.Internal.Build ( buildArrayI , buildArrayM , buildObjectI View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/88ee8bb5c224913fd056228656a25f83... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/88ee8bb5c224913fd056228656a25f83... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Marge Bot (@marge-bot)