mirror of
https://github.com/github/semantic.git
synced 2024-11-28 01:47:01 +03:00
Stub in Free.explore()
This commit is contained in:
parent
d362c1b26f
commit
29645e0d99
@ -223,4 +223,19 @@ extension Free {
|
||||
}
|
||||
|
||||
|
||||
// MARK: - Weaving
|
||||
|
||||
extension Free {
|
||||
public func explore() -> Location<Free> {
|
||||
func weave(free: Free) -> Location<Free>.Unweave {
|
||||
switch free {
|
||||
default:
|
||||
fatalError("unimplemented")
|
||||
}
|
||||
}
|
||||
return Location.explore(weave)(self)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
import Prelude
|
||||
|
Loading…
Reference in New Issue
Block a user