mirror of
https://github.com/github/semantic.git
synced 2024-12-02 02:08:48 +03:00
42 lines
919 B
Swift
42 lines
919 B
Swift
/// A patch to some part of a `Syntax` tree.
|
|
public enum Patch<A> {
|
|
case Replace(Fix<A>?, Fix<A>?)
|
|
|
|
public static func Insert(term: Fix<A>) -> Patch {
|
|
return .Replace(nil, term)
|
|
}
|
|
|
|
public static func Delete(term: Fix<A>) -> Patch {
|
|
return .Replace(term, nil)
|
|
}
|
|
|
|
public var state: (before: Fix<A>?, after: Fix<A>?) {
|
|
switch self {
|
|
case let .Replace(a, b):
|
|
return (a, b)
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// MARK: - Equality
|
|
|
|
extension Patch {
|
|
public static func equals(param: (A, A) -> Bool)(_ left: Patch, _ right: Patch) -> Bool {
|
|
return Optional.equals(Fix.equals(param))(left.state.before, right.state.before)
|
|
&& Optional.equals(Fix.equals(param))(left.state.after, right.state.after)
|
|
}
|
|
}
|
|
|
|
|
|
// MARK: - Hashing
|
|
|
|
extension Patch {
|
|
public func hash(param: A -> Hash) -> Hash {
|
|
return Hash.Ordered([
|
|
state.before.map { $0.hash(param) } ?? Hash.Empty,
|
|
state.after.map { $0.hash(param) } ?? Hash.Empty
|
|
])
|
|
}
|
|
}
|