mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
* swift-api-digester: ensure constructors are detected as removed if not moved. rdar://31694119 * swift-api-digester: types with the same printed name are considered behavior-preserving. rdar://31694085 * [test] Using tmp directory from build.
23 lines
660 B
Plaintext
23 lines
660 B
Plaintext
|
|
/* Removed Decls */
|
|
Class C3 has been removed
|
|
Constructor C1.init() has been removed
|
|
Constructor Somestruct2.init(_:) has been removed
|
|
|
|
/* Moved Decls */
|
|
|
|
/* Renamed Decls */
|
|
Struct Somestruct2 has been renamed to Struct NSSomestruct2
|
|
Func S1.foo5(x:y:) has been renamed to Func S1.foo5(x:y:z:)
|
|
|
|
/* Type Changes */
|
|
Constructor S1.init(_:) has parameter 0 type change from Int to Double
|
|
Func C1.foo2(_:) has parameter 0 type change from Int to () -> ()
|
|
|
|
/* Decl Attribute changes */
|
|
Var C1.CIIns1 changes from weak to strong
|
|
Var C1.CIIns2 changes from strong to weak
|
|
Func C1.foo1() is now not static
|
|
Func S1.foo3() is now static
|
|
Func S1.foo1() is now mutating
|