Commits
Chris Lattner committed 2653092ae56
Change the grammar for oneof elements to require a ':' make them more swift like and less ml like. Before we had:
oneof MaybeInt {
None,
Some int
}
Now we have:
oneof MaybeInt {
None,
Some : int
}
This resolves a fixme in the langref.
Swift SVN r214