WebcomLocation
public struct WebcomLocation : CustomStringConvertible
A value representing a location in source code.
-
The source code file identifier corresponding to this location.
Declaration
Swift
public let file: StaticString -
The line of the source code file corresponding to this location.
Declaration
Swift
public let line: UInt
-
Creates a new instance.
Declaration
Swift
public init(file: StaticString, line: UInt)Parameters
fileThe source code file identifier.
lineThe line of the source code file.
-
Declaration
Swift
public var description: String { get }