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

Explore Keyed nodes.

This commit is contained in:
Rob Rix 2015-11-05 10:33:54 -05:00
parent e6429cee40
commit c6baaf677d

View File

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