mirror of
https://github.com/github/semantic.git
synced 2024-11-29 02:44:36 +03:00
Add an Insert constructor to Free when used as a diff.
This commit is contained in:
parent
8366dc752a
commit
ce633f555a
@ -126,6 +126,10 @@ extension Free where B: PatchConvertible, B.Element == Cofree<A, ()> {
|
||||
public static func Replace(before: B.Element, _ after: B.Element) -> Free {
|
||||
return .Pure(B(patch: .Replace(before, after)))
|
||||
}
|
||||
|
||||
public static func Insert(after: B.Element) -> Free {
|
||||
return .Pure(B(patch: .Insert(after)))
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user