mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
48 lines
1.5 KiB
Swift
48 lines
1.5 KiB
Swift
//===--- Location.swift - Source location ---------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2021 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See https://swift.org/LICENSE.txt for license information
|
|
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
import SILBridging
|
|
|
|
public struct Location: Equatable, CustomStringConvertible {
|
|
let bridged: BridgedLocation
|
|
|
|
public var description: String {
|
|
return String(taking: bridged.getDebugDescription())
|
|
}
|
|
|
|
public var sourceLoc: SourceLoc? {
|
|
return SourceLoc(bridged: bridged.getSourceLocation())
|
|
}
|
|
|
|
/// Keeps the debug scope but marks it as auto-generated.
|
|
public var autoGenerated: Location {
|
|
Location(bridged: bridged.getAutogeneratedLocation())
|
|
}
|
|
|
|
public var hasValidLineNumber: Bool { bridged.hasValidLineNumber() }
|
|
public var isAutoGenerated: Bool { bridged.isAutoGenerated() }
|
|
|
|
public var isDebugSteppable: Bool { hasValidLineNumber && !isAutoGenerated }
|
|
|
|
public static func ==(lhs: Location, rhs: Location) -> Bool {
|
|
lhs.bridged.isEqualTo(rhs.bridged)
|
|
}
|
|
|
|
public func hasSameSourceLocation(as other: Location) -> Bool {
|
|
bridged.hasSameSourceLocation(other.bridged)
|
|
}
|
|
|
|
public static var artificialUnreachableLocation: Location {
|
|
Location(bridged: BridgedLocation.getArtificialUnreachableLocation())
|
|
}
|
|
}
|