Skip to content

4499-support-for-ghc-912x #4517

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 47 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
3d58a93
init to ghcide
soulomoon Mar 16, 2025
e7160a9
update
soulomoon Mar 16, 2025
03f6b3c
some more update
soulomoon Mar 16, 2025
a767490
cope with lookupCache function for module location
soulomoon Mar 16, 2025
316079c
ghcide and ghcide-test built
soulomoon Mar 16, 2025
f822964
remove unused import of rangesOverlap from PluginUtils
soulomoon Mar 16, 2025
0f5df94
managed to build in 9.12.2 without `SMethod_TextDocumentImplementation`
soulomoon Mar 16, 2025
e795722
add os-string dependency to ghcide.cabal
soulomoon Mar 17, 2025
97178a2
update
soulomoon Mar 17, 2025
8721e99
update ghcide
soulomoon Mar 17, 2025
8730bf7
fix tidyOpenType
soulomoon Mar 17, 2025
fa0d4de
fix SrcSpanAnn
soulomoon Mar 17, 2025
58b7a52
fix: enable gotoImplementation handler in GhcIde plugin
soulomoon Mar 17, 2025
af99f16
remove index and allow newer
soulomoon Mar 17, 2025
9bd6a85
chore: update index-state in cabal.project
soulomoon Mar 17, 2025
d806855
fix: conditionally allow newer base and ghc versions for GHC 9.12.2
soulomoon Mar 17, 2025
83f5690
fix: update GHC version constraint to allow newer base and ghc versio…
soulomoon Mar 17, 2025
c0be925
Merge branch 'master' into 4499-support-for-ghc-912x
soulomoon Mar 17, 2025
39f4368
fix: adjust import statements for compatibility with GHC versioning
soulomoon Mar 17, 2025
e7dd3de
fix: restore rnf implementation for LoadedBCOs in GHC 9.5.0+
soulomoon Mar 17, 2025
3414636
fix: update conditional compilation for GHC version checks
soulomoon Mar 17, 2025
7c56c86
fix: simplify import handling for GHC version checks
soulomoon Mar 17, 2025
5aea80d
fix: remove redundant import for GHC version 9.10.0
soulomoon Mar 17, 2025
4f68484
fix: update import statements and remove redundant rangesOverlap func…
soulomoon Mar 17, 2025
2b16444
fix: clean up import statements in PluginUtils.hs
soulomoon Mar 17, 2025
82e2441
fix: reorder import statements in PluginUtils.hs for clarity
soulomoon Mar 17, 2025
581cff3
fix: update NFData instance for GHC version checks in Orphans.hs
soulomoon Mar 17, 2025
a3c4a8d
fix: reorganize import statements in PluginUtils.hs for improved read…
soulomoon Mar 17, 2025
ad3188c
format
soulomoon Mar 17, 2025
0953705
format
soulomoon Mar 17, 2025
5145231
wobbles
soulomoon Mar 17, 2025
0c4fff9
disable all plugins for 9.12.0
soulomoon Mar 17, 2025
d342cdf
fix: update GHC versions in release workflow to include 9.12.2
soulomoon Mar 17, 2025
b488aa3
disable plugins for 9.12.2
soulomoon Mar 17, 2025
d7b5f00
bump haskell-actions/setup to version 2.7.10 in build and benchmark w…
soulomoon Mar 17, 2025
acdce95
refactor: remove unused import from Compat.hs
soulomoon Mar 17, 2025
fb97794
refactor: qualify Data.Text import in ExceptionTests.hs
soulomoon Mar 17, 2025
5b3619f
disable bench to proceed
soulomoon Mar 17, 2025
596bb42
feat: add entityInfo to mkHieFile' for GHC 9.11.0 compatibility
soulomoon Mar 17, 2025
36299b2
fix template haskell 9.12.2
soulomoon Mar 18, 2025
37a4d6b
fix: add conditional import for DuplicateRecordFields and FieldSelect…
soulomoon Mar 18, 2025
8c810cf
enable semanticTokens and notes
soulomoon Mar 18, 2025
91f1cbc
fix import
soulomoon Mar 18, 2025
1c620b2
fix import
soulomoon Mar 18, 2025
8405a21
fix version bound in matrix
soulomoon Mar 18, 2025
a366ad7
fix CI
soulomoon Mar 18, 2025
1349bcd
enable call hierarchy
soulomoon Mar 24, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix tidyOpenType
  • Loading branch information
soulomoon committed Mar 17, 2025
commit 8730bf7ee44c53f47fc551345e19cc5b54bd22f6
2 changes: 1 addition & 1 deletion plugins/hls-class-plugin/src/Ide/Plugin/Class/Types.hs
Original file line number Diff line number Diff line change
Expand Up @@ -221,5 +221,5 @@ getInstanceBindTypeSigsRule recorder = do
let name = idName id
whenMaybe (isBindingName name) $ do
env <- tcInitTidyEnv
let (_, ty) = tidyOpenType env (idType id)
let ty = tidyOpenType env (idType id)
pure $ InstanceBindTypeSig name ty
Loading