File tree 3 files changed +14
-19
lines changed
3 files changed +14
-19
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "Algorithm " : [
2
+ "Lazy Views " : [
3
3
" Algorithm.swift" ,
4
4
" Flatten.swift" ,
5
5
" FlatMap.swift" ,
6
6
" Map.swift" ,
7
7
" Join.swift" ,
8
- " Sort.swift" ,
9
8
" Zip.swift" ,
10
9
" Filter.swift" ,
11
- " Repeat.swift" ,
12
10
" Reverse.swift" ,
13
- " Stride.swift"
11
+ " Slice.swift" ,
12
+ " SequenceWrapper.swift" ,
13
+ " LazyCollection.swift" ,
14
+ " LazySequence.swift" ,
15
+ " ExistentialCollection.swift"
14
16
],
15
17
"Array" : [
16
18
" ArrayBody.swift" ,
21
23
" Arrays.swift" ,
22
24
" CocoaArray.swift" ,
23
25
" ContiguousArrayBuffer.swift" ,
26
+ " SliceBuffer.swift" ,
24
27
" SwiftNativeNSArray.swift"
25
28
],
26
29
"Assert" : [
54
57
" Collection.swift" ,
55
58
" CollectionAlgorithms.swift" ,
56
59
" EmptyCollection.swift" ,
57
- " LazyCollection .swift" ,
60
+ " Stride .swift" ,
58
61
" HashedCollections.swift" ,
59
- " ExistentialCollection .swift" ,
60
- " Slice .swift" ,
61
- " SliceBuffer .swift" ,
62
+ " Repeat .swift" ,
63
+ " Sort .swift" ,
64
+ " Range .swift" ,
62
65
" CollectionOfOne.swift" ,
63
66
" HeapBuffer.swift" ,
64
- " LazySequence.swift" ,
65
67
" Sequence.swift" ,
66
- " SequenceWrapper.swift" ,
67
68
" SequenceAlgorithms.swift" ,
68
69
" RangeReplaceableCollectionType.swift" ,
69
70
" Index.swift" ,
77
78
],
78
79
"Reflection" : [
79
80
" Mirrors.swift" ,
81
+ " Mirror.swift" ,
80
82
" Reflection.swift"
81
83
],
82
84
"Math" : [
93
95
" Hashing.swift" ,
94
96
" CompilerProtocols.swift" ,
95
97
" ErrorType.swift" ,
96
- " ImplicitlyUnwrappedOptional.swift" ,
97
98
" InputStream.swift" ,
98
99
" LifetimeManager.swift" ,
99
100
" ManagedBuffer.swift" ,
100
101
" Misc.swift" ,
101
- " Optional.swift" ,
102
102
" OptionSet.swift" ,
103
103
" OutputStream.swift" ,
104
- " Pointer.swift" ,
105
104
" Policy.swift" ,
106
105
" Print.swift" ,
107
106
" REPL.swift" ,
108
- " Range.swift" ,
109
107
" Runtime.swift" ,
110
108
" ShadowProtocols.swift" ,
111
109
" Shims.swift" ,
112
110
" Unmanaged.swift" ,
113
- " UnsafeBufferPointer.swift" ,
114
- " UnsafePointer.swift" ,
115
111
" Availability.swift" ,
116
112
" Bit.swift" ,
117
- " Mirror.swift" ,
118
113
" Process.swift" ,
119
114
" Tuple.swift"
120
115
]
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ var x: Int
41
41
42
42
// RUN: %sourcekitd-test -req=module-groups -module Swift | FileCheck -check-prefix=GROUP1 %s
43
43
// GROUP1: <GROUPS>
44
- // GROUP1-DAG: Algorithm
44
+ // GROUP1-DAG: Lazy Views
45
45
// GROUP1-DAG: Assert
46
46
// GROUP1-DAG: String
47
47
// GROUP1-DAG: Collection
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ func foo2(var a : [S1]) {
27
27
28
28
// RUN: %sourcekitd-test -req=cursor -pos=5:13 %s -- %s %mcp_opt %clang-importer-sdk | FileCheck -check-prefix=CHECK-GENERATOR %s
29
29
// CHECK-GENERATOR-NOT: _AnyGeneratorBase
30
- // CHECK-GENERATOR: <Group>Collection </Group>
30
+ // CHECK-GENERATOR: <Group>Lazy Views </Group>
31
31
32
32
// RUN: %sourcekitd-test -req=cursor -pos=8:10 %s -- %s %mcp_opt %clang-importer-sdk | FileCheck -check-prefix=CHECK-REPLACEMENT1 %s
33
33
// CHECK-REPLACEMENT1: <Group>Collection</Group>
You can’t perform that action at this time.
0 commit comments