Files
swift-mirror/test/refactoring/AddCodableImplementation/extension.swift
Rintaro Ishizaki 39606e6269 [refactoring] Rework "add codable implementation" refactoring
* Support extensions including conditional conformance
* Correct access modifiers
* More correct lookup for the synthesized declarations
* Avoid printing decls in nested types (rdar://98025945)
2024-03-13 13:34:32 +09:00

44 lines
1.2 KiB
Swift

// RUN: rm -rf %t.result && mkdir -p %t.result
struct User {
let firstName: String
let lastName: String?
}
extension User: Codable {
}
// RUN: %refactor -source-filename %s -pos=3:8 | %FileCheck %s
// RUN: %refactor -add-explicit-codable-implementation -source-filename %s -pos=8:11 > %t.result/basic.swift
// RUN: diff -u %S/Outputs/extension/basic.swift.expected %t.result/basic.swift
struct Generic<Value> {
var value: Value
}
extension Generic {
}
extension Generic: Codable where Value: Codable {
}
// RUN: %refactor -source-filename %s -pos=15:8 | %FileCheck %s
// RUN: %refactor -source-filename %s -pos=19:8 | %FileCheck %s
// RUN: %refactor -add-explicit-codable-implementation -source-filename %s -pos=22:11 > %t.result/conditional.swift
// RUN: diff -u %S/Outputs/extension/conditional.swift.expected %t.result/conditional.swift
struct Outer {
struct Inner {
let value: Int
}
}
extension Outer.Inner: Codable {
}
// RUN: %refactor -source-filename %s -pos=36:11 | %FileCheck %s
// RUN: %refactor -add-explicit-codable-implementation -source-filename %s -pos=36:17 > %t.result/nested.swift
// RUN: diff -u %S/Outputs/extension/nested.swift.expected %t.result/nested.swift
// CHECK-NOT: Add Explicit Codable