-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathKeyPathMultiModule_b.swift
345 lines (285 loc) · 7.77 KB
/
KeyPathMultiModule_b.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
import StdlibUnittest
// rdar://125886333
public struct GenericExternalKeyPathTest<E> {
public private(set) var property: String {
get {
return "\(E.self)"
}
set {
}
}
public init() {}
}
public struct A {
public var x: Int { return 0 }
// NB: These declarations intentionally do not constrain the index type
// to be Hashable, to ensure that we get the Hashable conformance from
// the context where the key path was formed for equality while using the
// property descriptor's accessors.
public subscript<T>(withGeneric index: T) -> T {
return index
}
public private(set) subscript<T>(withGenericPrivateSet index: T) -> T {
get {
return index
}
set { }
}
public subscript<T>(withGenericSettable index: T) -> T {
get {
return index
}
set { }
}
public var storedA: B<Int>
public private(set) var storedB: Double
public var y: Int {
get { return 0 }
set { }
}
public private(set) var z: Int {
get { return 0 }
set { }
}
public internal(set) var w: Int {
get { return 0 }
set { }
}
public fileprivate(set) var v: Int {
get { return 0 }
set { }
}
public let immutable: Int = 1738
}
public struct B<U> {
public var x: Int { return 0 }
public var y: Int {
get { return 0 }
set { }
}
public private(set) var z: Int {
get { return 0 }
set { }
}
public subscript(withInt i: Int) -> Int {
return i
}
// NB: These declarations intentionally do not constrain the index type
// to be Hashable, to ensure that we get the Hashable conformance from
// the context where the key path was formed for equality while using the
// property descriptor's accessors.
public subscript<T>(withGeneric i: T) -> T {
return i
}
public private(set) subscript<T>(withGenericPrivateSet index: T) -> T {
get {
return index
}
set { }
}
public subscript<T>(withGenericSettable index: T) -> T {
get {
return index
}
set { }
}
public var storedA: U
public internal(set) var storedB: U
}
public func A_x_keypath() -> KeyPath<A, Int> {
return \A.x
}
public func A_y_keypath() -> KeyPath<A, Int> {
return \A.y
}
public func A_z_keypath() -> KeyPath<A, Int> {
return \A.z
}
public func A_w_keypath() -> KeyPath<A, Int> {
return \A.w
}
public func A_v_keypath() -> KeyPath<A, Int> {
return \A.v
}
public func A_immutable_keypath() -> KeyPath<A, Int> {
return \A.immutable
}
public func A_subscript_withGeneric_keypath<T: Hashable>(index: T)
-> KeyPath<A, T> {
return \A.[withGeneric: index]
}
public func A_subscript_withGenericSettable_keypath<T: Hashable>(index: T)
-> KeyPath<A, T> {
return \A.[withGenericSettable: index]
}
public func A_subscript_withGenericPrivateSet_keypath<T: Hashable>(index: T)
-> KeyPath<A, T> {
return \A.[withGenericPrivateSet: index]
}
public func A_subscript_withGeneric_butt_keypath()
-> KeyPath<A, String> {
return \A.[withGeneric: "pomeranian's big butt"]
}
public func B_subscript_withInt_keypath<T>(_: T.Type, index: Int)
-> KeyPath<B<T>, Int> {
return \B<T>.[withInt: index]
}
public func B_Double_subscript_withInt_0_keypath()
-> KeyPath<B<Double>, Int> {
return \B<Double>.[withInt: 0]
}
public func B_subscript_withGeneric_keypath<T, U: Hashable>(
_: T.Type, index: U
) -> KeyPath<B<T>, U> {
return \B<T>.[withGeneric: index]
}
public func B_subscript_withGenericSettable_keypath<T, U: Hashable>(
_: T.Type, index: U
) -> KeyPath<B<T>, U> {
return \B<T>.[withGenericSettable: index]
}
public func B_subscript_withGenericPrivateSet_keypath<T, U: Hashable>(
_: T.Type, index: U
) -> KeyPath<B<T>, U> {
return \B<T>.[withGenericPrivateSet: index]
}
public func B_Double_subscript_withGeneric_butt_keypath()
-> KeyPath<B<Double>, String> {
return \B<Double>.[withGeneric: "Never is the universal butt type"]
}
public func A_storedA_keypath() -> KeyPath<A, B<Int>> {
return \A.storedA
}
public func A_storedA_storedB_keypath() -> KeyPath<A, Int> {
return \A.storedA.storedB
}
public func A_storedB_keypath() -> KeyPath<A, Double> {
return \A.storedB
}
public func B_x_keypath<T>(_: T.Type) -> KeyPath<B<T>, Int> {
return \B<T>.x
}
public func B_y_keypath<T>(_: T.Type) -> KeyPath<B<T>, Int> {
return \B<T>.y
}
public func B_z_keypath<T>(_: T.Type) -> KeyPath<B<T>, Int> {
return \B<T>.z
}
public func B_Int_x_keypath() -> KeyPath<B<Int>, Int> {
return \B<Int>.x
}
public func B_Int_y_keypath() -> KeyPath<B<Int>, Int> {
return \B<Int>.y
}
public func B_Int_z_keypath() -> KeyPath<B<Int>, Int> {
return \B<Int>.z
}
public func B_storedA_keypath<T>(_: T.Type) -> KeyPath<B<T>, T> {
return \B<T>.storedA
}
public func B_storedB_keypath<T>(_: T.Type) -> KeyPath<B<T>, T> {
return \B<T>.storedB
}
public func B_Int_storedA_keypath() -> KeyPath<B<Int>, Int> {
return \B<Int>.storedA
}
public func B_Int_storedB_keypath() -> KeyPath<B<Int>, Int> {
return \B<Int>.storedB
}
open class ResilientRoot {
open var storedA = "a"
open var storedB = "b"
public let storedLet = "c"
open var virtual: String {
get { return "foo" }
set { }
}
open var virtualRO: String {
get { return "foo" }
}
final public var final: String {
get { return "foo" }
set { }
}
}
open class ResilientSub: ResilientRoot {
open var storedC = "c"
override open var virtual: String {
get { return "bar" }
set { }
}
open var sub: String {
get { return "bar" }
set { }
}
open var subRO: String {
get { return "foo" }
}
}
public func ResilientRoot_storedA_keypath() -> KeyPath<ResilientRoot, String> {
return \ResilientRoot.storedA
}
public func ResilientRoot_storedB_keypath() -> KeyPath<ResilientRoot, String> {
return \ResilientRoot.storedB
}
public func ResilientRoot_storedLet_keypath() -> KeyPath<ResilientRoot, String> {
return \ResilientRoot.storedLet
}
public func ResilientRoot_virtual_keypath() -> KeyPath<ResilientRoot, String> {
return \ResilientRoot.virtual
}
public func ResilientRoot_virtualRO_keypath() -> KeyPath<ResilientRoot, String> {
return \ResilientRoot.virtualRO
}
public func ResilientRoot_final_keypath() -> KeyPath<ResilientRoot, String> {
return \ResilientRoot.final
}
public func ResilientSub_storedA_keypath() -> KeyPath<ResilientSub, String> {
return \ResilientSub.storedA
}
public func ResilientSub_storedB_keypath() -> KeyPath<ResilientSub, String> {
return \ResilientSub.storedB
}
public func ResilientSub_storedC_keypath() -> KeyPath<ResilientSub, String> {
return \ResilientSub.storedC
}
public func ResilientSub_virtual_keypath() -> KeyPath<ResilientSub, String> {
return \ResilientSub.virtual
}
public func ResilientSub_virtualRO_keypath() -> KeyPath<ResilientSub, String> {
return \ResilientSub.virtualRO
}
public func ResilientSub_final_keypath() -> KeyPath<ResilientSub, String> {
return \ResilientSub.final
}
public func ResilientSub_sub_keypath() -> KeyPath<ResilientSub, String> {
return \ResilientSub.sub
}
public func ResilientSub_subRO_keypath() -> KeyPath<ResilientSub, String> {
return \ResilientSub.subRO
}
public protocol ResilientRootProto {
var root: String { get }
}
public protocol ResilientSubProto: ResilientRootProto {
var sub: String { get }
}
extension Int: ResilientSubProto {
public var root: String { return "root" }
public var sub: String { return "sub" }
}
public func ResilientRootProto_root_keypath<T: ResilientRootProto>(_: T.Type) -> KeyPath<T, String> {
return \T.root
}
public func ResilientSubProto_sub_keypath<T: ResilientSubProto>(_: T.Type) -> KeyPath<T, String> {
return \T.sub
}
extension Int {
public var appendTest: Int { return self }
}
extension String {
public var appendTest: String { return self }
}
extension LifetimeTracked {
public var appendTest: LifetimeTracked { return self }
}