Skip to content
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

Support call hierarchy on pattern matching #2129

Merged
merged 3 commits into from
Aug 27, 2021
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
1 change: 1 addition & 0 deletions plugins/hls-call-hierarchy-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Enabled by default. You can disable it in your editor settings whenever you like
{
"haskell.plugin.callHierarchy.globalOn": true
}
```

## Change log
### 1.0.0.1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: hls-call-hierarchy-plugin
version: 1.0.0.1
version: 1.0.0.2
synopsis: Call hierarchy plugin for Haskell Language Server
license: Apache-2.0
license-file: LICENSE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ prepareCallHierarchy state pluginId param
liftIO (runAction "CallHierarchy.prepareHierarchy" state (prepareCallHierarchyItem nfp pos)) >>=
\case
Just items -> pure $ Right $ Just $ List items
Nothing -> pure $ Left $ responseError "Call Hierarchy: No result"
Nothing -> pure $ Right Nothing
| otherwise = pure $ Left $ responseError $ T.pack $ "Call Hierarchy: uriToNormalizedFilePath failed for: " <> show uri
where
uri = param ^. (L.textDocument . L.uri)
Expand All @@ -67,23 +67,28 @@ constructFromAst nfp pos =
resolveIntoCallHierarchy :: Applicative f => HieASTs a -> Position -> NormalizedFilePath -> f (Maybe [CallHierarchyItem])
resolveIntoCallHierarchy hf pos nfp =
case listToMaybe $ pointCommand hf pos extract of
Just res -> pure $ Just $ mapMaybe (construct nfp hf) res
Nothing -> pure Nothing
Nothing -> pure Nothing
Just infos ->
case mapMaybe (construct nfp hf) infos of
[] -> pure Nothing
res -> pure $ Just res

extract :: HieAST a -> [(Identifier, S.Set ContextInfo, Span)]
extract ast = let span = nodeSpan ast
infos = M.toList $ M.map identInfo (Compat.getNodeIds ast)
in [ (ident, contexts, span) | (ident, contexts) <- infos ]

recFieldInfo, declInfo, valBindInfo, classTyDeclInfo,
useInfo, patternBindInfo, tyDeclInfo :: [ContextInfo] -> Maybe ContextInfo
recFieldInfo ctxs = listToMaybe [ctx | ctx@RecField{} <- ctxs]
declInfo ctxs = listToMaybe [ctx | ctx@Decl{} <- ctxs]
valBindInfo ctxs = listToMaybe [ctx | ctx@ValBind{} <- ctxs]
classTyDeclInfo ctxs = listToMaybe [ctx | ctx@ClassTyDecl{} <- ctxs]
useInfo ctxs = listToMaybe [Use | Use <- ctxs]
patternBindInfo ctxs = listToMaybe [ctx | ctx@PatternBind{} <- ctxs]
tyDeclInfo ctxs = listToMaybe [TyDecl | TyDecl <- ctxs]
useInfo, patternBindInfo, tyDeclInfo, matchBindInfo
:: [ContextInfo] -> Maybe ContextInfo
recFieldInfo ctxs = listToMaybe [ctx | ctx@RecField{} <- ctxs]
declInfo ctxs = listToMaybe [ctx | ctx@Decl{} <- ctxs]
valBindInfo ctxs = listToMaybe [ctx | ctx@ValBind{} <- ctxs]
classTyDeclInfo ctxs = listToMaybe [ctx | ctx@ClassTyDecl{} <- ctxs]
useInfo ctxs = listToMaybe [Use | Use <- ctxs]
patternBindInfo ctxs = listToMaybe [ctx | ctx@PatternBind{} <- ctxs]
tyDeclInfo ctxs = listToMaybe [TyDecl | TyDecl <- ctxs]
matchBindInfo ctxs = listToMaybe [MatchBind | MatchBind <- ctxs]

construct :: NormalizedFilePath -> HieASTs a -> (Identifier, S.Set ContextInfo, Span) -> Maybe CallHierarchyItem
construct nfp hf (ident, contexts, ssp)
Expand All @@ -93,6 +98,9 @@ construct nfp hf (ident, contexts, ssp)
-- ignored type span
= Just $ mkCallHierarchyItem' ident SkField ssp ssp

| isJust (matchBindInfo ctxList) && isNothing (valBindInfo ctxList)
= Just $ mkCallHierarchyItem' ident SkFunction ssp ssp

| Just ctx <- valBindInfo ctxList
= Just $ case ctx of
ValBind _ _ span -> mkCallHierarchyItem' ident SkFunction (renderSpan span) ssp
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ instance FromRow Vertex where
<*> field <*> field <*> field
<*> field <*> field <*> field
<*> field <*> field

data SymbolPosition = SymbolPosition {
psl :: Int
, psc :: Int
Expand Down
18 changes: 18 additions & 0 deletions plugins/hls-call-hierarchy-plugin/test/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,15 @@ prepareCallHierarchyTests =
expected = mkCallHierarchyItemV "b" SkFunction range selRange
oneCaseWithCreate contents 0 2 expected
]
, testCase "multi pattern" $ do
let contents = T.unlines
[ "f (Just _) = ()"
, "f Nothing = ()"
]
range = mkRange 1 0 1 1
selRange = mkRange 1 0 1 1
expected = mkCallHierarchyItemV "f" SkFunction range selRange
oneCaseWithCreate contents 1 0 expected
]

incomingCallsTests :: TestTree
Expand Down Expand Up @@ -263,6 +272,15 @@ incomingCallsTests =
positions = [(1, 5)]
ranges = [mkRange 1 13 1 14]
incomingCallTestCase contents 1 13 positions ranges
, testCase "multi pattern" $ do
let contents = T.unlines
[ "f 1 = 1"
, "f 2 = 2"
, "g = f"
]
positions = [(2, 0)]
ranges = [mkRange 2 4 2 5]
incomingCallTestCase contents 1 0 positions ranges
]
, testGroup "multi file"
[ testCase "1" $ do
Expand Down