1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 08:54:07 +03:00

Explore Fixed terms in diffs.

This commit is contained in:
Rob Rix 2015-11-04 16:34:47 -05:00
parent 51166a0e0f
commit ad0dffe20c

View File

@ -235,6 +235,9 @@ extension Free {
case let .Roll(annotation, .Indexed(i)):
return Location.variadic(i, weave, { Free.Roll(annotation, .Indexed($0)) })
case let .Roll(annotation, .Fixed(f)):
return Location.variadic(f, weave, { Free.Roll(annotation, .Fixed($0)) })
default:
fatalError("unimplemented")
}