File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
PlaygroundLogger/PlaygroundLogger Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ final class LoggerMirror {
136
136
let cpql = _PlaygroundQuickLook ( reflecting: obj)
137
137
switch cpql {
138
138
case . text( _) :
139
- if ( obj as? CustomPlaygroundQuickLookable ) != nil {
139
+ if ( obj as? CustomPlaygroundQuickLookable_ ) != nil {
140
140
quickLookData = cpql
141
141
} else {
142
142
// ignore .Text quicklook data that doesn't come from a CustomPlaygroundQuickLookable as that is a synthetized conformance
Original file line number Diff line number Diff line change @@ -603,7 +603,7 @@ class EnumSummaryTestCase_NotGeneric : TestCase {
603
603
// NSBezierPath(rect: rect).fill()
604
604
// }
605
605
// }
606
- // class MyView: NSView , CustomPlaygroundQuickLookable {
606
+ // class MyView: NSView , _CustomPlaygroundQuickLookable {
607
607
// override func drawRect(_ rect: CGRect) {
608
608
// NSColor.blueColor().set()
609
609
// NSBezierPath(rect: rect).fill()
@@ -654,7 +654,7 @@ class PlaygroundQuickLookCalledOnceTestCase : TestCase {
654
654
var explanation : String { return " Check that the logger only calls customPlaygroundQuickLook() one time per log operation " }
655
655
var behavior : TestBehavior { return . ExpectedSuccess }
656
656
func doTest( ) {
657
- class MyObject : CustomPlaygroundQuickLookable {
657
+ class MyObject : _CustomPlaygroundQuickLookable {
658
658
var numCalls = 0
659
659
var customPlaygroundQuickLook : _PlaygroundQuickLook {
660
660
get {
You can’t perform that action at this time.
0 commit comments