Skip to content

Fix broken call-hierarchy-plugin-tests for type signatures #3188

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

Merged
merged 8 commits into from
Sep 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions plugins/hls-call-hierarchy-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ Enabled by default. You can disable it in your editor settings whenever you like
```

## Change log
### 1.1.0.0
- Support ghc-9.4.
- Refactor code base and force four space indent.
### 1.0.3.0
Remove force update `HieDb` logic in queries.
### 1.0.1.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,8 @@ library
build-depends:
, aeson
, base >=4.12 && <5
, bytestring
, containers
, extra
, ghc
, ghcide ^>= 1.8
, hiedb
, hls-plugin-api ^>= 1.5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ import Language.LSP.Types

descriptor :: PluginDescriptor IdeState
descriptor = (defaultPluginDescriptor X.callHierarchyId)
{ Ide.Types.pluginHandlers = mkPluginHandler STextDocumentPrepareCallHierarchy X.prepareCallHierarchy
<> mkPluginHandler SCallHierarchyIncomingCalls X.incomingCalls
<> mkPluginHandler SCallHierarchyOutgoingCalls X.outgoingCalls
}
{ Ide.Types.pluginHandlers =
mkPluginHandler STextDocumentPrepareCallHierarchy X.prepareCallHierarchy
<> mkPluginHandler SCallHierarchyIncomingCalls X.incomingCalls
<> mkPluginHandler SCallHierarchyOutgoingCalls X.outgoingCalls
}
Loading