File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -94,32 +94,26 @@ public protocol _ObjectiveCBridgeable {
94
94
/// a metatype, make it conform to _ObjectiveCBridgeable, and its witness table
95
95
/// will be ABI-compatible with one that directly provided conformance to the
96
96
/// metatype type itself.
97
- @_fixed_layout
98
97
public struct _BridgeableMetatype : _ObjectiveCBridgeable {
99
- @usableFromInline // FIXME(sil-serialize-all)
100
98
internal var value : AnyObject . Type
101
99
102
- @inlinable // FIXME(sil-serialize-all)
103
100
internal init ( value: AnyObject . Type ) {
104
101
self . value = value
105
102
}
106
103
107
104
public typealias _ObjectiveCType = AnyObject
108
105
109
- @inlinable // FIXME(sil-serialize-all)
110
106
public func _bridgeToObjectiveC( ) -> AnyObject {
111
107
return value
112
108
}
113
109
114
- @inlinable // FIXME(sil-serialize-all)
115
110
public static func _forceBridgeFromObjectiveC(
116
111
_ source: AnyObject ,
117
112
result: inout _BridgeableMetatype ?
118
113
) {
119
114
result = _BridgeableMetatype ( value: source as! AnyObject . Type )
120
115
}
121
116
122
- @inlinable // FIXME(sil-serialize-all)
123
117
public static func _conditionallyBridgeFromObjectiveC(
124
118
_ source: AnyObject ,
125
119
result: inout _BridgeableMetatype ?
@@ -133,7 +127,6 @@ public struct _BridgeableMetatype: _ObjectiveCBridgeable {
133
127
return false
134
128
}
135
129
136
- @inlinable // FIXME(sil-serialize-all)
137
130
@_effects ( readonly)
138
131
public static func _unconditionallyBridgeFromObjectiveC( _ source: AnyObject ? )
139
132
-> _BridgeableMetatype {
You can’t perform that action at this time.
0 commit comments