mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Change all uses of "do { ... } while <cond>" to use "repeat" instead.
Rename DoWhileStmt to RepeatWhileStmt. Add diagnostic suggesting change
of 'do' to 'repeat' if a condition is found afterwards.
<rdar://problem/20336424> rename do/while loops to repeat/while & introduce "repeat <count> {}" loops
Swift SVN r27650
59 lines
1.5 KiB
Swift
59 lines
1.5 KiB
Swift
// RUN: %target-run-simple-swift | FileCheck %s
|
|
|
|
// REQUIRES: objc_interop
|
|
|
|
import Foundation
|
|
|
|
class Canary: NSObject {
|
|
deinit {
|
|
println("died")
|
|
}
|
|
}
|
|
|
|
var CanaryAssocObjectHandle: UInt8 = 0
|
|
|
|
|
|
// Hack to build with both older and newer SDKs.
|
|
// rdar://problem/19494514
|
|
extension UInt {
|
|
static let OBJC_ASSOCIATION_RETAIN_NONATOMIC: UInt = 1
|
|
}
|
|
|
|
// Attach an associated object with a loud deinit so we can see that the
|
|
// object died.
|
|
func hangCanary(o: AnyObject) {
|
|
objc_setAssociatedObject(o, &CanaryAssocObjectHandle, Canary(),
|
|
.OBJC_ASSOCIATION_RETAIN_NONATOMIC)
|
|
}
|
|
|
|
// CHECK-LABEL: NSData:
|
|
println("NSData:")
|
|
autoreleasepool {
|
|
var bytes: UnsafeMutablePointer<UInt8>
|
|
repeat {
|
|
let data = NSData(bytes: [2, 3, 5, 7] as [UInt8], length: 4)
|
|
hangCanary(data)
|
|
bytes = UnsafeMutablePointer<UInt8>(data.bytes)
|
|
} while false // CHECK-NOT: died
|
|
println(bytes[0]) // CHECK: 2
|
|
println(bytes[1]) // CHECK-NEXT: 3
|
|
println(bytes[2]) // CHECK-NEXT: 5
|
|
println(bytes[3]) // CHECK-NEXT: 7
|
|
} // CHECK-NEXT: died
|
|
|
|
// CHECK-LABEL: AnyObject:
|
|
println("AnyObject:")
|
|
autoreleasepool {
|
|
var bytes: UnsafeMutablePointer<UInt8>
|
|
repeat {
|
|
let data = NSData(bytes: [11, 13, 17, 19] as [UInt8], length: 4)
|
|
hangCanary(data)
|
|
let dataAsAny: AnyObject = data
|
|
bytes = UnsafeMutablePointer<UInt8>(dataAsAny.bytes!)
|
|
} while false // CHECK-NOT: died
|
|
println(bytes[0]) // CHECK: 11
|
|
println(bytes[1]) // CHECK-NEXT: 13
|
|
println(bytes[2]) // CHECK-NEXT: 17
|
|
println(bytes[3]) // CHECK-NEXT: 19
|
|
} // CHECK-NEXT: died
|