@@ -228,11 +228,13 @@ public extension CGPoint {
228228 }
229229}
230230
231- extension CGPoint : CustomReflectable , CustomPlaygroundQuickLookable {
231+ extension CGPoint : CustomReflectable {
232232 public var customMirror : Mirror {
233233 return Mirror ( self , children: [ " x " : x, " y " : y] , displayStyle: . `struct`)
234234 }
235+ }
235236
237+ extension CGPoint : _CustomPlaygroundQuickLookable {
236238 @available ( * , deprecated, message: " CGPoint.customPlaygroundQuickLook will be removed in a future Swift version " )
237239 public var customPlaygroundQuickLook : PlaygroundQuickLook {
238240 return . point( Double ( x) , Double ( y) )
@@ -293,14 +295,16 @@ public extension CGSize {
293295 }
294296}
295297
296- extension CGSize : CustomReflectable , CustomPlaygroundQuickLookable {
298+ extension CGSize : CustomReflectable {
297299 public var customMirror : Mirror {
298300 return Mirror (
299301 self ,
300302 children: [ " width " : width, " height " : height] ,
301303 displayStyle: . `struct`)
302304 }
305+ }
303306
307+ extension CGSize : _CustomPlaygroundQuickLookable {
304308 @available ( * , deprecated, message: " CGSize.customPlaygroundQuickLook will be removed in a future Swift version " )
305309 public var customPlaygroundQuickLook : PlaygroundQuickLook {
306310 return . size( Double ( width) , Double ( height) )
@@ -431,14 +435,16 @@ public extension CGRect {
431435 public var y : CGFloat { return minY }
432436}
433437
434- extension CGRect : CustomReflectable , CustomPlaygroundQuickLookable {
438+ extension CGRect : CustomReflectable {
435439 public var customMirror : Mirror {
436440 return Mirror (
437441 self ,
438442 children: [ " origin " : origin, " size " : size] ,
439443 displayStyle: . `struct`)
440444 }
445+ }
441446
447+ extension CGRect : _CustomPlaygroundQuickLookable {
442448 @available ( * , deprecated, message: " CGRect.customPlaygroundQuickLook will be removed in a future Swift version " )
443449 public var customPlaygroundQuickLook : PlaygroundQuickLook {
444450 return . rectangle(
0 commit comments