Skip to content

Commit 9bfca45

Browse files
committed
Update ABI test for typed-throws map
1 parent d21c649 commit 9bfca45

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

test/api-digester/stability-stdlib-abi-without-asserts.test

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,14 @@ Func AnySequence.map(_:) has been renamed to Func __rethrows_map(_:)
8888
Func AnySequence.map(_:) has mangled name changing from 'Swift.AnySequence.map<A>((A) throws -> A1) throws -> Swift.Array<A1>' to 'Swift.AnySequence.__rethrows_map<A>((A) throws -> A1) throws -> Swift.Array<A1>'
8989
Func AnySequence.map(_:) is now without @rethrows
9090

91+
// These are using
92+
Func Sequence.map(_:) has been renamed to Func __rethrows_map(_:)
93+
Func Sequence.map(_:) has mangled name changing from '(extension in Swift):Swift.Sequence.map<A>((A.Element) throws -> A1) throws -> Swift.Array<A1>' to '(extension in Swift):Swift.Sequence.__rethrows_map<A>((A.Element) throws -> A1) throws -> Swift.Array<A1>'
94+
Func Sequence.map(_:) is now without @rethrows
95+
Func Collection.map(_:) has been renamed to Func __rethrows_map(_:)
96+
Func Collection.map(_:) has mangled name changing from '(extension in Swift):Swift.Collection.map<A>((A.Element) throws -> A1) throws -> Swift.Array<A1>' to '(extension in Swift):Swift.Collection.__rethrows_map<A>((A.Element) throws -> A1) throws -> Swift.Array<A1>'
97+
Func Collection.map(_:) is now without @rethrows
98+
9199
// These haven't actually been removed; they are simply marked unavailable.
92100
// This seems to be a false positive in the ABI checker. This is not an ABI
93101
// break because the symbols are still present, and is not a source break

0 commit comments

Comments
 (0)