Skip to content

Commit 6c75bf8

Browse files
committed
Update source-stability test
It looks like we print generic parameters differently from typealiases created to point to them.
1 parent 02185c3 commit 6c75bf8

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

test/api-digester/source-stability.swift.expected

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,11 @@ Func DefaultRandomAccessIndices.index(after:) has return type change from Elemen
5858
Func DefaultRandomAccessIndices.index(before:) has return type change from Elements.Index to DefaultRandomAccessIndices.Index
5959
Func Dictionary.index(after:) has return type change from DictionaryIndex<Key, Value> to Dictionary<Key, Value>.Index
6060
Func Dictionary.index(forKey:) has return type change from DictionaryIndex<Key, Value>? to Dictionary<Key, Value>.Index?
61+
Func Dictionary.makeIterator() has return type change from DictionaryIterator<Key, Value> to DictionaryIterator<Dictionary.Key, Dictionary.Value>
6162
Func Dictionary.popFirst() has return type change from (key: Key, value: Value)? to Dictionary.Element?
6263
Func Dictionary.remove(at:) has return type change from (key: Key, value: Value) to Dictionary.Element
64+
Func Dictionary.removeValue(forKey:) has return type change from Value? to Dictionary.Value?
65+
Func Dictionary.updateValue(_:forKey:) has return type change from Value? to Dictionary.Value?
6366
Func EnumeratedIterator.next() has return type change from (offset: Int, element: Base.Element)? to EnumeratedIterator.Element?
6467
Func FlattenBidirectionalCollection.index(after:) has return type change from FlattenBidirectionalCollectionIndex<Base> to FlattenBidirectionalCollection.Index
6568
Func FlattenBidirectionalCollection.index(before:) has return type change from FlattenBidirectionalCollectionIndex<Base> to FlattenBidirectionalCollection.Index
@@ -182,10 +185,22 @@ Func ReversedRandomAccessCollection.index(_:offsetBy:) has return type change fr
182185
Func ReversedRandomAccessCollection.index(_:offsetBy:limitedBy:) has return type change from ReversedRandomAccessIndex<Base>? to ReversedRandomAccessCollection.Index?
183186
Func ReversedRandomAccessCollection.index(after:) has return type change from ReversedRandomAccessIndex<Base> to ReversedRandomAccessCollection.Index
184187
Func ReversedRandomAccessCollection.index(before:) has return type change from ReversedRandomAccessIndex<Base> to ReversedRandomAccessCollection.Index
188+
Func Set.formSymmetricDifference(_:) has 1st parameter type change from Set<Element> to Set<Set.Element>
185189
Func Set.index(after:) has return type change from SetIndex<Element> to Set<Element>.Index
186190
Func Set.index(of:) has return type change from SetIndex<Element>? to Set<Element>.Index?
191+
Func Set.intersection(_:) has return type change from Set<Element> to Set<Set.Element>
192+
Func Set.isDisjoint(with:) has 1st parameter type change from Set<Element> to Set<Set.Element>
193+
Func Set.isStrictSubset(of:) has 1st parameter type change from Set<Element> to Set<Set.Element>
194+
Func Set.isStrictSuperset(of:) has 1st parameter type change from Set<Element> to Set<Set.Element>
195+
Func Set.isSubset(of:) has 1st parameter type change from Set<Element> to Set<Set.Element>
196+
Func Set.isSuperset(of:) has 1st parameter type change from Set<Element> to Set<Set.Element>
187197
Func Set.popFirst() has return type change from Element? to Set.Element?
188198
Func Set.remove(at:) has 1st parameter type change from SetIndex<Element> to Set<Element>.Index
199+
Func Set.removeFirst() has return type change from Element to Set.Element
200+
Func Set.subtract(_:) has 1st parameter type change from Set<Element> to Set<Set.Element>
201+
Func Set.subtracting(_:) has return type change from Set<Element> to Set<Set.Element>
202+
Func Set.symmetricDifference(_:) has return type change from Set<Element> to Set<Set.Element>
203+
Func Set.union(_:) has return type change from Set<Element> to Set<Set.Element>
189204
Func Slice.distance(from:to:) has return type change from Base.IndexDistance to Slice.IndexDistance
190205
Func Slice.index(_:offsetBy:) has return type change from Base.Index to Slice.Index
191206
Func Slice.index(_:offsetBy:limitedBy:) has return type change from Base.Index? to Slice.Index?

0 commit comments

Comments
 (0)