Name and label changes for closure parameters (for review only) (#2981)

Implement SE-0118 Name and label changes for closure parameters

[SE-0118](https://github.com/apple/swift-evolution/blob/master/proposals/0118-closure-parameter-names-and-labels.md)
This commit is contained in:
Dave Abrahams
2016-07-15 15:31:48 -07:00
committed by GitHub
parent a77539aa38
commit 18406900ba
65 changed files with 382 additions and 350 deletions

View File

@@ -129,7 +129,7 @@ final class CodecTest<Codec : TestableUnicodeCodec> {
) { $0 == $1 }
encodeIndex = encodeBuffer.startIndex
Codec.encode(scalar, sendingOutputTo: encodeOutput)
Codec.encode(scalar, into: encodeOutput)
expectEqual(
nsEncoded, encodeBuffer[0..<encodeIndex],
"Decoding failed: \(asHex(nsEncoded)) => " +