How to get KtFunction supperMethod and overrideMethod
Answered
like java:
```
val scope = GlobalSearchScope.projectScope(func.project)
OverridingMethodsSearch.search(func, scope, true).filterNotNull()
func.findSuperMethods().toList()
```
Please sign in to leave a comment.
Could you please clarify what code you're using now and what doesn't work?