1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
@_exported import Foundation
protocol __PrivProto {
}
class Foo : NSObject, __PrivProto {
var __privValue: Any!
class var __privClassValue: Any!
func __noArgs()
func __oneArg(_ arg: Int32)
func __twoArgs(_ arg: Int32, other arg2: Int32)
class func __withNoArgs() -> Self!
@available(swift, obsoleted: 3, renamed: "__withNoArgs()")
class func __fooWithNoArgs() -> Self!
convenience init!(__oneArg arg: Int32)
@available(*, unavailable, renamed: "init(__oneArg:)", message: "Not available in Swift")
class func __fooWithOneArg(_ arg: Int32) -> Self!
convenience init!(__twoArgs arg: Int32, other arg2: Int32)
@available(*, unavailable, renamed: "init(__twoArgs:other:)", message: "Not available in Swift")
class func __fooWithTwoArgs(_ arg: Int32, other arg2: Int32) -> Self!
convenience init!(__ arg: Int32)
@available(*, unavailable, renamed: "init(__:)", message: "Not available in Swift")
class func __foo(_ arg: Int32) -> Self!
func objectForKeyedSubscript(_ index: Any!) -> Any!
func __setObject(_ object: Any!, forKeyedSubscript index: Any!)
func __objectAtIndexedSubscript(_ index: Int32) -> Any!
func setObject(_ object: Any!, atIndexedSubscript index: Int32)
init()
}
class Bar : NSObject {
init!()
init!(__noArgs: ())
init!(__oneArg arg: Int32)
init!(__twoArgs arg: Int32, other arg2: Int32)
init!(__ arg: Int32)
}
class __PrivFooSub : Foo {
convenience init!(__oneArg arg: Int32)
convenience init!(__twoArgs arg: Int32, other arg2: Int32)
convenience init!(__ arg: Int32)
init()
}
func __privTest()
struct S0 {
init()
init(__privValue: Int32)
var __privValue: Int32
}
struct __PrivS1 {
init()
init(value: Int32)
var value: Int32
}
struct __PrivS2 {
init()
init(value: Int32)
var value: Int32
}
var __PrivAnonymousA: Int { get }
struct E0 : Equatable, RawRepresentable {
init(_ rawValue: UInt32)
init(rawValue: UInt32)
var rawValue: UInt32
typealias RawValue = UInt32
}
var __E0PrivA: E0 { get }
struct __PrivE1 : Equatable, RawRepresentable {
init(_ rawValue: UInt32)
init(rawValue: UInt32)
var rawValue: UInt32
typealias RawValue = UInt32
}
var __PrivE1A: __PrivE1 { get }
struct __PrivE2 : Equatable, RawRepresentable {
init(_ rawValue: UInt32)
init(rawValue: UInt32)
var rawValue: UInt32
typealias RawValue = UInt32
}
var __PrivE2A: __PrivE2 { get }
enum __PrivNSEnum : Int {
init?(rawValue: Int)
var rawValue: Int { get }
typealias RawValue = Int
case A
}
enum NSEnum : Int {
init?(rawValue: Int)
var rawValue: Int { get }
typealias RawValue = Int
case __privA
@available(swift, obsoleted: 3, renamed: "__privA")
static var __PrivA: NSEnum { get }
case B
}
struct __PrivNSOptions : OptionSet {
init(rawValue: Int)
let rawValue: Int
typealias RawValue = Int
typealias Element = __PrivNSOptions
typealias ArrayLiteralElement = __PrivNSOptions
static var A: __PrivNSOptions { get }
}
struct NSOptions : OptionSet {
init(rawValue: Int)
let rawValue: Int
typealias RawValue = Int
typealias Element = NSOptions
typealias ArrayLiteralElement = NSOptions
static var __privA: NSOptions { get }
@available(swift, obsoleted: 3, renamed: "__privA")
static var __PrivA: NSOptions { get }
static var B: NSOptions { get }
}
class __PrivCFType : _CFObject {
}
@available(swift, obsoleted: 3, renamed: "__PrivCFType")
typealias __PrivCFTypeRef = __PrivCFType
typealias __PrivCFSub = __PrivCFType
@available(swift, obsoleted: 3, renamed: "__PrivCFSub")
typealias __PrivCFSubRef = __PrivCFSub
typealias __PrivInt = Int32
|