mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
At some point I want to propose a revised model for exports, but for now just mark that support for '@exported' is still experimental and subject to change. (Thanks, Max.)
8 lines
222 B
Swift
8 lines
222 B
Swift
@_exported import WebKit
|
|
import Foundation
|
|
|
|
@available(OSX, introduced=10.10) @available(iOS, introduced=8.0)
|
|
extension WKErrorCode : _BridgedNSError {
|
|
public static var _NSErrorDomain: String { return WKErrorDomain }
|
|
}
|