|
46 | 46 | import org.apache.logging.log4j.core.util.IOUtils; |
47 | 47 | import org.checkerframework.checker.nullness.qual.MonotonicNonNull; |
48 | 48 | import org.checkerframework.checker.nullness.qual.Nullable; |
| 49 | +import org.eclipse.lsp4j.CallHierarchyIncomingCall; |
| 50 | +import org.eclipse.lsp4j.CallHierarchyIncomingCallsParams; |
| 51 | +import org.eclipse.lsp4j.CallHierarchyItem; |
| 52 | +import org.eclipse.lsp4j.CallHierarchyOutgoingCall; |
| 53 | +import org.eclipse.lsp4j.CallHierarchyOutgoingCallsParams; |
| 54 | +import org.eclipse.lsp4j.CallHierarchyPrepareParams; |
49 | 55 | import org.eclipse.lsp4j.CodeAction; |
50 | 56 | import org.eclipse.lsp4j.CodeActionParams; |
51 | 57 | import org.eclipse.lsp4j.CodeLens; |
@@ -580,6 +586,28 @@ public CompletableFuture<List<FoldingRange>> foldingRange(FoldingRangeRequestPar |
580 | 586 | ), Collections::emptyList); |
581 | 587 | } |
582 | 588 |
|
| 589 | + |
| 590 | + |
| 591 | + @Override |
| 592 | + public CompletableFuture<List<CallHierarchyIncomingCall>> callHierarchyIncomingCalls( |
| 593 | + CallHierarchyIncomingCallsParams params) { |
| 594 | + // TODO Auto-generated method stub |
| 595 | + return IBaseTextDocumentService.super.callHierarchyIncomingCalls(params); |
| 596 | + } |
| 597 | + |
| 598 | + @Override |
| 599 | + public CompletableFuture<List<CallHierarchyOutgoingCall>> callHierarchyOutgoingCalls( |
| 600 | + CallHierarchyOutgoingCallsParams params) { |
| 601 | + // TODO Auto-generated method stub |
| 602 | + return IBaseTextDocumentService.super.callHierarchyOutgoingCalls(params); |
| 603 | + } |
| 604 | + |
| 605 | + @Override |
| 606 | + public CompletableFuture<List<CallHierarchyItem>> prepareCallHierarchy(CallHierarchyPrepareParams params) { |
| 607 | + // TODO Auto-generated method stub |
| 608 | + return IBaseTextDocumentService.super.prepareCallHierarchy(params); |
| 609 | + } |
| 610 | + |
583 | 611 | @Override |
584 | 612 | public synchronized void registerLanguage(LanguageParameter lang) { |
585 | 613 | logger.info("registerLanguage({})", lang.getName()); |
|
0 commit comments