1. allow embed type declaration in protocol
e.g.:
protocol URLProvider {
fun url() throws -> URL
}
extension URLProvider {
enum Error: Swift.Error {
invalidBaseURL
invalidPath
invalidQuery
invalidFragment
}
}
func parseURL() throws -> URL {
throw URLProvider.Error.invalidBaseURL
}
2. allow throw in property getter/setter
e.g.:
struct myURLProvider: URLProvider {
var url: throws -> URL {
try URL(baseURL: baseURL, path: path, query: query, fragment: fragment)
}
}
_______________________________________________
swift-evolution mailing list
[email protected]
https://lists.swift.org/mailman/listinfo/swift-evolution