mirror of
https://github.com/apple/swift.git
synced 2026-06-20 15:42:51 +02:00
d866c99d66
Fixes incorrect StaticFunctionCall extraction for cases where the
function was being called on an instance (common in builders)
```
public static var baz: [Foo] {
Foo(name: "MyFooProvider.bars.1").me()
}
```
fixes: rdar://163359435
---------
Co-authored-by: Deniz Dizman <ddizman@apple.com>