1
1
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:
Rob Rix 2015-11-04 16:22:29 -05:00
parent d362c1b26f
commit 29645e0d99

View File

@ -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