Skip to content

Commit 2ec8e7b

Browse files
committed
Add missing imports to support building with Bazel
1 parent f751f71 commit 2ec8e7b

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

InAppViewDebugger/Element.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
// Copyright © 2019 Indragie Karunaratne. All rights reserved.
77
//
88

9+
import Foundation
910
import CoreGraphics
1011

1112
/// Provides identifying information for an element that is displayed in the

InAppViewDebugger/ParallelLineView.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
// Copyright © 2019 Indragie Karunaratne. All rights reserved.
77
//
88

9-
import Foundation
9+
import UIKit
10+
import CoreGraphics
1011

1112
/// A view that draws one or more parallel vertical lines.
1213
final class ParallelLineView: UIView {

InAppViewDebugger/Snapshot.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
//
88

99
import Foundation
10+
import CoreGraphics
1011

1112
/// A snapshot of the UI element tree in its current state.
1213
@objc(IAVDSnapshot) public final class Snapshot: NSObject {

0 commit comments

Comments
 (0)