File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
Tests/StructTransactionMacroTests Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -170,6 +170,8 @@ final class WriterMacroTests: XCTestCase {
170
170
self.pointer = pointer
171
171
}
172
172
173
+ // MARK: - Properties
174
+
173
175
public var stored_property_wrapper: String {
174
176
mutating _read {
175
177
$_readIdentifiers.insert( " stored_property_wrapper " )
@@ -180,6 +182,10 @@ final class WriterMacroTests: XCTestCase {
180
182
yield &pointer.pointee.stored_property_wrapper
181
183
}
182
184
}
185
+
186
+ // MARK: - Functions
187
+
188
+
183
189
}
184
190
185
191
}
@@ -252,6 +258,8 @@ final class WriterMacroTests: XCTestCase {
252
258
self.pointer = pointer
253
259
}
254
260
261
+ // MARK: - Properties
262
+
255
263
public var constant_has_initial_value: Int {
256
264
mutating _read {
257
265
$_readIdentifiers.insert( " constant_has_initial_value " )
@@ -262,6 +270,10 @@ final class WriterMacroTests: XCTestCase {
262
270
yield &pointer.pointee.constant_has_initial_value
263
271
}
264
272
}
273
+
274
+ // MARK: - Functions
275
+
276
+
265
277
}
266
278
267
279
}
@@ -365,6 +377,8 @@ final class WriterMacroTests: XCTestCase {
365
377
self.pointer = pointer
366
378
}
367
379
380
+ // MARK: - Properties
381
+
368
382
public var computed_read_only: Int
369
383
{
370
384
mutating get {
@@ -390,6 +404,10 @@ final class WriterMacroTests: XCTestCase {
390
404
variable_no_initial_value = newValue
391
405
}
392
406
}
407
+
408
+ // MARK: - Functions
409
+
410
+
393
411
}
394
412
395
413
}
You can’t perform that action at this time.
0 commit comments