Files
SwiftFormat/Snapshots/Async/EffectfulProperties.swift
2021-05-30 07:50:05 +01:00

14 lines
318 B
Swift

var contents: String {
get async throws {
guard let url = Bundle.main.url(forResource: filename, withExtension: nil) else {
throw FileError.missing
}
do {
return try String(contentsOf: url)
} catch {
throw FileError.unreadable
}
}
}