mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
48 lines
1.6 KiB
Swift
48 lines
1.6 KiB
Swift
// REQUIRES: swift_swift_parser
|
|
|
|
// RUN: %empty-directory(%t)
|
|
// RUN: %target-swift-frontend %s -swift-version 5 -module-name main -disable-availability-checking -typecheck -plugin-path %swift-plugin-dir -dump-macro-expansions > %t/expansions-dump.txt 2>&1
|
|
// RUN: %FileCheck %s < %t/expansions-dump.txt
|
|
|
|
@DebugDescription
|
|
struct MyStruct: CustomDebugStringConvertible {
|
|
var debugDescription: String { "thirty" }
|
|
}
|
|
// CHECK: static let _lldb_summary: (
|
|
// CHECK: {{UInt8(, UInt8)*}}
|
|
// CHECK: ) =
|
|
// CHECK: (
|
|
// CHECK: /* version */ 1,
|
|
// CHECK: /* record size */ 23,
|
|
// CHECK: /* "main.MyStruct" */ 14, 109, 97, 105, 110, 46, 77, 121, 83, 116, 114, 117, 99, 116, 0,
|
|
// CHECK: /* "thirty" */ 7, 116, 104, 105, 114, 116, 121, 0
|
|
// CHECK: )
|
|
|
|
@DebugDescription
|
|
class MyClass: CustomDebugStringConvertible {
|
|
var debugDescription: String { "thirty" }
|
|
}
|
|
// CHECK: static let _lldb_summary: (
|
|
// CHECK: {{UInt8(, UInt8)*}}
|
|
// CHECK: ) =
|
|
// CHECK: (
|
|
// CHECK: /* version */ 1,
|
|
// CHECK: /* record size */ 22,
|
|
// CHECK: /* "main.MyClass" */ 13, 109, 97, 105, 110, 46, 77, 121, 67, 108, 97, 115, 115, 0,
|
|
// CHECK: /* "thirty" */ 7, 116, 104, 105, 114, 116, 121, 0
|
|
// CHECK: )
|
|
|
|
@DebugDescription
|
|
class MyEnum: CustomDebugStringConvertible {
|
|
var debugDescription: String { "thirty" }
|
|
}
|
|
// CHECK: static let _lldb_summary: (
|
|
// CHECK: {{UInt8(, UInt8)*}}
|
|
// CHECK: ) =
|
|
// CHECK: (
|
|
// CHECK: /* version */ 1,
|
|
// CHECK: /* record size */ 21,
|
|
// CHECK: /* "main.MyEnum" */ 12, 109, 97, 105, 110, 46, 77, 121, 69, 110, 117, 109, 0,
|
|
// CHECK: /* "thirty" */ 7, 116, 104, 105, 114, 116, 121, 0
|
|
// CHECK: )
|