forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrintTestTypes.swift
201 lines (151 loc) · 4.07 KB
/
PrintTestTypes.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
public protocol ProtocolUnrelatedToPrinting {}
public struct StructPrintable : CustomStringConvertible,
ProtocolUnrelatedToPrinting {
let x: Int
public init(_ x: Int) {
self.x = x
}
public var description: String {
return "►\(x)◀︎"
}
}
public struct LargeStructPrintable : CustomStringConvertible,
ProtocolUnrelatedToPrinting {
let a: Int
let b: Int
let c: Int
let d: Int
public init(_ a: Int, _ b: Int, _ c: Int, _ d: Int) {
self.a = a
self.b = b
self.c = c
self.d = d
}
public var description: String {
return "<\(a) \(b) \(c) \(d)>"
}
}
public struct StructDebugPrintable : CustomDebugStringConvertible {
let x: Int
public init(_ x: Int) {
self.x = x
}
public var debugDescription: String {
return "►\(x)◀︎"
}
}
public struct StructVeryPrintable : CustomStringConvertible,
CustomDebugStringConvertible, ProtocolUnrelatedToPrinting {
let x: Int
public init(_ x: Int) {
self.x = x
}
public var description: String {
return "<description: \(x)>"
}
public var debugDescription: String {
return "<debugDescription: \(x)>"
}
}
public struct EmptyStructWithoutDescription {
public init() {}
}
public struct WithoutDescription {
let x: Int
public init(_ x: Int) {
self.x = x
}
}
public struct ValuesWithoutDescription<T, U, V> {
let t: T
let u: U
let v: V
public init(_ t: T, _ u: U, _ v: V) {
self.t = t
self.u = u
self.v = v
}
}
public class ClassPrintable : CustomStringConvertible,
ProtocolUnrelatedToPrinting {
let x: Int
public init(_ x: Int) {
self.x = x
}
public var description: String {
return "►\(x)◀︎"
}
}
public class ClassVeryPrintable : CustomStringConvertible,
CustomDebugStringConvertible, ProtocolUnrelatedToPrinting {
let x: Int
public init(_ x: Int) {
self.x = x
}
public var description: String {
return "<description: \(x)>"
}
public var debugDescription: String {
return "<debugDescription: \(x)>"
}
}
public enum MyStringError: Error {
case failure
}
public struct MyString : ExpressibleByStringLiteral,
ExpressibleByStringInterpolation {
public init(str: String) {
value = str
}
public var value: String
public init(unicodeScalarLiteral value: String) {
self.init(str: value)
}
public init(extendedGraphemeClusterLiteral value: String) {
self.init(str: value)
}
public init(stringLiteral value: String) {
self.init(str: value)
}
public init(stringInterpolation: StringInterpolation) {
self.init(str: stringInterpolation.result)
}
public struct StringInterpolation: StringInterpolationProtocol {
var result: String
public init(literalCapacity: Int, interpolationCount: Int) {
result = String(literalCapacity) + "/" + String(interpolationCount)
}
public mutating func appendLiteral(_ literal: String) {
result += "<literal " + literal + ">"
}
public mutating func appendInterpolation<T>(_ expr: T) {
result += "<interpolation:T " + String(describing: expr) + ">"
}
public mutating func appendInterpolation(_ expr: Int) {
result += "<interpolation:Int " + String(expr) + ">"
}
public mutating func appendInterpolation(_ expr: Int, radix: Int) {
result += "<interpolation:Int,radix " + String(expr, radix: radix) + ">"
}
public mutating func appendInterpolation<T>(debug: T) {
result += "<interpolation:T debug: " + String(reflecting: debug) + ">"
}
public mutating func appendInterpolation(fails: Bool) throws {
if fails {
throw MyStringError.failure
}
result += "<interpolation:fails >"
}
public mutating
func appendInterpolation(required: Bool, optional: Bool = false) {
result += "<interpolation:required:optional " +
String(reflecting: required) + " " + String(reflecting: optional) + ">"
}
}
}
public struct MySimpleString : ExpressibleByStringInterpolation {
public var value: String
public init(stringLiteral: String) {
value = stringLiteral
}
}