swift-promises
swift-promises copied to clipboard
Array types are now written with the brackets around the element type
"var pending: (() -> ())[] = []" should be "var pending: [(() -> ())] = []"
yep