mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
36 lines
1.3 KiB
Swift
36 lines
1.3 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 {
|
|
var name: String = "thirty"
|
|
var debugDescription: String { "${\(self.name)}" }
|
|
}
|
|
// CHECK: static let _lldb_summary: (
|
|
// CHECK: {{UInt8(, UInt8)*}}
|
|
// CHECK: ) =
|
|
// CHECK: (
|
|
// CHECK: /* version */ 1,
|
|
// CHECK: /* record size */ 32,
|
|
// CHECK: /* "main.MyStruct" */ 14, 109, 97, 105, 110, 46, 77, 121, 83, 116, 114, 117, 99, 116, 0,
|
|
// CHECK: /* "\${${var.name}}" */ 16, 92, 36, 123, 36, 123, 118, 97, 114, 46, 110, 97, 109, 101, 125, 125, 0
|
|
// CHECK: )
|
|
|
|
@DebugDescription
|
|
class MyClass {
|
|
var name: String = "thirty"
|
|
var lldbDescription: String { "${var.name}" }
|
|
}
|
|
// CHECK: static let _lldb_summary: (
|
|
// CHECK: {{UInt8(, UInt8)*}}
|
|
// CHECK: ) =
|
|
// CHECK: (
|
|
// CHECK: /* version */ 1,
|
|
// CHECK: /* record size */ 27,
|
|
// CHECK: /* "main.MyClass" */ 13, 109, 97, 105, 110, 46, 77, 121, 67, 108, 97, 115, 115, 0,
|
|
// CHECK: /* "${var.name}" */ 12, 36, 123, 118, 97, 114, 46, 110, 97, 109, 101, 125, 0
|
|
// CHECK: )
|