Files
swift-mirror/test/api-digester/Outputs/Cake.txt
Xi Ge a644ab33a0 swift-api-digester: fix recently found false positives. (#8899)
* 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.
2017-04-20 18:34:52 -07:00

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