@@ -668,13 +668,11 @@ public func ?? <T>(optional: T?, defaultValue: @autoclosure () throws -> T?)
668
668
#if _runtime(_ObjC)
669
669
extension Optional : _ObjectiveCBridgeable {
670
670
// The object that represents `none` for an Optional of this type.
671
- @inlinable // FIXME(sil-serialize-all)
672
671
internal static var _nilSentinel : AnyObject {
673
672
@_silgen_name ( " _swift_Foundation_getOptionalNilSentinelObject " )
674
673
get
675
674
}
676
675
677
- @inlinable // FIXME(sil-serialize-all)
678
676
public func _bridgeToObjectiveC( ) -> AnyObject {
679
677
// Bridge a wrapped value by unwrapping.
680
678
if let value = self {
@@ -684,7 +682,6 @@ extension Optional : _ObjectiveCBridgeable {
684
682
return type ( of: self ) . _nilSentinel
685
683
}
686
684
687
- @inlinable // FIXME(sil-serialize-all)
688
685
public static func _forceBridgeFromObjectiveC(
689
686
_ source: AnyObject ,
690
687
result: inout Optional < Wrapped > ?
@@ -702,7 +699,6 @@ extension Optional : _ObjectiveCBridgeable {
702
699
result = . some( . some( unwrappedResult) )
703
700
}
704
701
705
- @inlinable // FIXME(sil-serialize-all)
706
702
public static func _conditionallyBridgeFromObjectiveC(
707
703
_ source: AnyObject ,
708
704
result: inout Optional < Wrapped > ?
@@ -726,7 +722,6 @@ extension Optional : _ObjectiveCBridgeable {
726
722
}
727
723
}
728
724
729
- @inlinable // FIXME(sil-serialize-all)
730
725
@_effects ( readonly)
731
726
public static func _unconditionallyBridgeFromObjectiveC( _ source: AnyObject ? )
732
727
-> Optional < Wrapped > {
0 commit comments