Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
head.hackage
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Glasgow Haskell Compiler
head.hackage
Commits
ac5c9d58
Commit
ac5c9d58
authored
1 year ago
by
Ryan Scott
Browse files
Options
Downloads
Patches
Plain Diff
Update ghcide-2.0.0.1 patch to accommodate changes in
ghc!11593
and
ghc!11604
parent
9612e794
No related branches found
Branches containing commit
No related tags found
1 merge request
!341
Update ghcide-2.0.0.1 patch to accommodate changes in ghc/ghc!11547
Pipeline
#86884
passed
1 year ago
Stage: generate
Stage: dispatch
Changes
1
Pipelines
9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
patches/ghcide-2.0.0.1.patch
+39
-1
39 additions, 1 deletion
patches/ghcide-2.0.0.1.patch
with
39 additions
and
1 deletion
patches/ghcide-2.0.0.1.patch
+
39
−
1
View file @
ac5c9d58
...
...
@@ -11,7 +11,7 @@ index 8b4b467..60d6634 100644
default-language: Haskell2010
build-depends:
diff --git a/src/Development/IDE/Core/Compile.hs b/src/Development/IDE/Core/Compile.hs
index 1f70e96..
28c99e2
100644
index 1f70e96..
7075816
100644
--- a/src/Development/IDE/Core/Compile.hs
+++ b/src/Development/IDE/Core/Compile.hs
@@ -61,7 +61,7 @@
import qualified Data.HashMap.Strict as HashMap
...
...
@@ -32,6 +32,15 @@ index 1f70e96..28c99e2 100644
import qualified Development.IDE.GHC.Compat as Compat
import qualified Development.IDE.GHC.Compat as GHC
import qualified Development.IDE.GHC.Compat.Util as Util
@@ -122,7 +122,7 @@
import TcSplice
#endif
#if MIN_VERSION_ghc(9,2,0)
-import GHC (Anchor (anchor),
+import GHC (Anchor, anchor,
EpaComment (EpaComment),
EpaCommentTok (EpaBlockComment, EpaLineComment),
ModuleGraph, epAnnComments,
@@ -459,11 +459,15 @@
filterUsages = id
-- | Mitigation for https://gitlab.haskell.org/ghc/ghc/-/issues/22744
...
...
@@ -343,6 +352,19 @@ index c4f9cd5..7978924 100644
(formatBulleted ctx $ e)
#else
(formatBulleted ctx $ Error.renderDiagnostic e)
diff --git a/src/Development/IDE/GHC/Compat/Parser.hs b/src/Development/IDE/GHC/Compat/Parser.hs
index 2fd5b74..79edee4 100644
--- a/src/Development/IDE/GHC/Compat/Parser.hs
+++ b/src/Development/IDE/GHC/Compat/Parser.hs
@@ -53,7 +53,7 @@
import qualified GHC.Parser.Annotation as Anno
import qualified GHC.Parser.Lexer as Lexer
import GHC.Types.SrcLoc (PsSpan (..))
#if MIN_VERSION_ghc(9,2,0)
-import GHC (Anchor (anchor),
+import GHC (Anchor, anchor,
EpAnnComments (priorComments),
EpaComment (EpaComment),
EpaCommentTok (..),
diff --git a/src/Development/IDE/GHC/Orphans.hs b/src/Development/IDE/GHC/Orphans.hs
index b9d1646..1e4c92b 100644
--- a/src/Development/IDE/GHC/Orphans.hs
...
...
@@ -361,6 +383,22 @@ index b9d1646..1e4c92b 100644
instance Show HomeModInfo where show = show . mi_module . hm_iface
diff --git a/src/Development/IDE/Import/FindImports.hs b/src/Development/IDE/Import/FindImports.hs
index a5b356a..42fcde3 100644
--- a/src/Development/IDE/Import/FindImports.hs
+++ b/src/Development/IDE/Import/FindImports.hs
@@ -196,7 +196,11 @@
notFoundErr env modName reason =
}
LookupUnusable unusable ->
let unusables' = map get_unusable unusable
+#if MIN_VERSION_ghc(9,9,0)
+ get_unusable (_, ModUnusable r) = r
+#else
get_unusable (m, ModUnusable r) = (moduleUnit m, r)
+#endif
get_unusable (_, r) =
pprPanic "findLookupResult: unexpected origin" (ppr r)
in notFound {fr_unusables = unusables'}
diff --git a/src/Development/IDE/Plugin/Completions/Logic.hs b/src/Development/IDE/Plugin/Completions/Logic.hs
index 677cd74..d72fe8e 100644
--- a/src/Development/IDE/Plugin/Completions/Logic.hs
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment