mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
toString(x) => String(x) toDebugString(x) => String(reflecting: x) Printable => CustomStringConvertible DebugPrintable => CustomDebugStringConvertible Also updated comments to clarify these protocols Swift SVN r27090
29 lines
567 B
Swift
29 lines
567 B
Swift
// Things in this file are deliberately internal. The test harness uses @testable import.
|
|
|
|
internal class Base : CustomStringConvertible {
|
|
let id: Int
|
|
|
|
init(_ id: Int) {
|
|
self.id = id
|
|
}
|
|
|
|
var description: String { return "instance \(id)" }
|
|
|
|
private func privateFn() -> String {
|
|
return "private \(id)"
|
|
}
|
|
func callPrivate() -> String {
|
|
return privateFn()
|
|
}
|
|
}
|
|
|
|
private class PrivateSub : Base {
|
|
override func privateFn() -> String {
|
|
return "really private"
|
|
}
|
|
}
|
|
|
|
internal func getPrivateInstance() -> Base {
|
|
return PrivateSub(0)
|
|
}
|