mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Count inheritance by 'getInheritedForPrinting()' (align with ASTPrinter). rdar://problem/41593893
24 lines
606 B
Swift
24 lines
606 B
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: %{python} %utils/split_file.py -o %t %s
|
|
// RUN: %sourcekitd-test -req=cursor -pos=8:37 %t/first.swift -- %t/first.swift %t/second.swift | %FileCheck %s
|
|
|
|
// CHECK: source.lang.swift.ref.var.instance (6:9-6:12)
|
|
|
|
|
|
// BEGIN first.swift
|
|
protocol ChatDataSourceDelegateProtocol {
|
|
func chatDataSourceDidUpdate()
|
|
}
|
|
|
|
class BaseChatViewController {
|
|
var foo = 1
|
|
func bar() {
|
|
print(self . /*cursor-info->*/foo)
|
|
}
|
|
}
|
|
|
|
// BEGIN second.swift
|
|
extension BaseChatViewController: ChatDataSourceDelegateProtocol {
|
|
func chatDataSourceDidUpdate() { fatalError() }
|
|
}
|