Files
sourcekit-lsp/Sources
Alex Hoppen aff620481f In call hierarchy look through variable accessors and show surrounding function call
Fix two bugs in call hierarchy:
1. In the following, we used to show `myVar` as the caller of `foo`. That was a dead end and didn’t allow any further exploration
```swift
func foo() {}
func testFunc(x: String) {
  let myVar = foo()
}
```
2. Handle variables and their accessors in call hierarchy

rdar://123526105
2024-02-28 09:38:00 -08:00
..
2024-02-19 08:20:58 -08:00