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 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2023 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
//==========================================================================//
// IMPORTANT: The macros defined in this file are intended to test the //
// behavior of MacroSystem. Many of them do not serve as good examples of //
// how macros should be written. In particular, they often lack error //
// handling because it is not needed in the few test cases in which these //
// macros are invoked. //
//==========================================================================//
import SwiftSyntax
import SwiftSyntaxMacroExpansion
import SwiftSyntaxMacros
import SwiftSyntaxMacrosTestSupport
import XCTest
extension PatternBindingSyntax {
/// When the variable is declaring a single binding, produce the name of
/// that binding.
fileprivate var singleBindingName: String? {
if let identifierPattern = pattern.as(IdentifierPatternSyntax.self) {
return identifierPattern.identifier.trimmedDescription
}
return nil
}
}
private extension TokenSyntax {
var asIdentifierToken: TokenSyntax? {
switch tokenKind {
case .identifier, .dollarIdentifier: return self.trimmed
default: return nil
}
}
}
extension FunctionParameterSyntax {
var argumentName: TokenSyntax? {
// If we have two names, the first one is the argument label
if secondName != nil {
return firstName.asIdentifierToken
}
// If we have only one name, it might be an argument label.
if let superparent = parent?.parent?.parent, superparent.is(SubscriptDeclSyntax.self) {
return nil
}
return firstName.asIdentifierToken
}
}
extension SyntaxProtocol {
/// Form a function name.
private func formFunctionName(
_ baseName: String,
_ parameters: FunctionParameterClauseSyntax?
) -> String {
let argumentNames: [String] =
parameters?.parameters.map { param in
let argumentLabelText = param.argumentName?.text ?? "_"
return argumentLabelText + ":"
} ?? []
return "\(baseName)(\(argumentNames.joined(separator: "")))"
}
/// Form the #function name for the given node.
fileprivate func functionName<Context: MacroExpansionContext>(
in context: Context
) -> String? {
// Declarations with parameters.
// FIXME: Can we abstract over these?
if let function = self.as(FunctionDeclSyntax.self) {
return formFunctionName(
function.name.trimmedDescription,
function.signature.parameterClause
)
}
if let initializer = self.as(InitializerDeclSyntax.self) {
return formFunctionName("init", initializer.signature.parameterClause)
}
if let subscriptDecl = self.as(SubscriptDeclSyntax.self) {
return formFunctionName(
"subscript",
subscriptDecl.parameterClause
)
}
if let enumCase = self.as(EnumCaseElementSyntax.self) {
guard let associatedValue = enumCase.parameterClause else {
return enumCase.name.text
}
let argumentNames = associatedValue.parameters.map { param in
guard let firstName = param.firstName else {
return "_:"
}
return firstName.text + ":"
}.joined()
return "\(enumCase.name.text)(\(argumentNames))"
}
// Accessors use their enclosing context, i.e., a subscript or pattern
// binding.
if self.is(AccessorDeclSyntax.self) {
guard let lexicalContext = context.lexicalContext.dropFirst().first else {
return nil
}
return lexicalContext.functionName(in: context)
}
// All declarations with identifiers.
if let identified = self.asProtocol(NamedDeclSyntax.self) {
return identified.name.trimmedDescription
}
// Extensions
if let extensionDecl = self.as(ExtensionDeclSyntax.self) {
// FIXME: It would be nice to be able to switch on type syntax...
let extendedType = extensionDecl.extendedType
if let simple = extendedType.as(IdentifierTypeSyntax.self) {
return simple.name.trimmedDescription
}
if let member = extendedType.as(MemberTypeSyntax.self) {
return member.name.trimmedDescription
}
}
// Pattern bindings.
if let patternBinding = self.as(PatternBindingSyntax.self),
let singleVarName = patternBinding.singleBindingName
{
return singleVarName
}
return nil
}
}
struct FunctionMacro: ExpressionMacro {
static func expansion<
Node: FreestandingMacroExpansionSyntax,
Context: MacroExpansionContext
>(
of node: Node,
in context: Context
) -> ExprSyntax {
guard let lexicalContext = context.lexicalContext.first,
let name = lexicalContext.functionName(in: context)
else {
return #""<unknown>""#
}
return ExprSyntax("\(literal: name)")
}
}
struct MultilineFunctionMacro: ExpressionMacro {
static func expansion<
Node: FreestandingMacroExpansionSyntax,
Context: MacroExpansionContext
>(
of node: Node,
in context: Context
) -> ExprSyntax {
guard let lexicalContext = context.lexicalContext.first,
let name = lexicalContext.functionName(in: context)
else {
return #""<unknown>""#
}
return ExprSyntax("{\n\(literal: name)\n}")
}
}
struct AllLexicalContextsMacro: DeclarationMacro {
static func expansion(
of node: some FreestandingMacroExpansionSyntax,
in context: some MacroExpansionContext
) throws -> [DeclSyntax] {
context.lexicalContext.compactMap { $0.as(DeclSyntax.self)?.trimmed }
}
}
struct LexicalContextDescriptionMacro: ExpressionMacro {
static func expansion(
of node: some FreestandingMacroExpansionSyntax,
in context: some MacroExpansionContext
) throws -> ExprSyntax {
let descriptions = context.lexicalContext.reduce(into: "") { descriptions, syntax in
descriptions += "\(syntax.trimmed)\n"
}
return """
\"\"\"
\(raw: descriptions)\"\"\"
"""
}
}
final class LexicalContextTests: XCTestCase {
private let indentationWidth: Trivia = .spaces(2)
func testPoundFunction() {
assertMacroExpansion(
"""
func f(a: Int, _: Double, c: Int) {
print(#function)
}
""",
expandedSource: """
func f(a: Int, _: Double, c: Int) {
print("f(a:_:c:)")
}
""",
macros: ["function": FunctionMacro.self],
indentationWidth: indentationWidth
)
assertMacroExpansion(
"""
struct X {
init(from: String) {
#function
}
subscript(a: Int) -> String {
#function
}
subscript(a a: Int) -> String {
#function
}
}
""",
expandedSource: """
struct X {
init(from: String) {
"init(from:)"
}
subscript(a: Int) -> String {
"subscript(_:)"
}
subscript(a a: Int) -> String {
"subscript(a:)"
}
}
""",
macros: ["function": FunctionMacro.self],
indentationWidth: indentationWidth
)
assertMacroExpansion(
"""
var computed: String {
get {
#function
}
}
""",
expandedSource: """
var computed: String {
get {
"computed"
}
}
""",
macros: ["function": FunctionMacro.self],
indentationWidth: indentationWidth
)
assertMacroExpansion(
"""
extension A {
static var staticProp: String = #function
}
""",
expandedSource: """
extension A {
static var staticProp: String = "staticProp"
}
""",
macros: ["function": FunctionMacro.self],
indentationWidth: indentationWidth
)
assertMacroExpansion(
"""
func f(a: Int, _: Double, c: Int) {
print(/*comment*/#function)
}
""",
expandedSource: """
func f(a: Int, _: Double, c: Int) {
print(/*comment*/"f(a:_:c:)")
}
""",
macros: ["function": FunctionMacro.self],
indentationWidth: indentationWidth
)
assertMacroExpansion(
"""
var computed: String {
get {
/*comment*/#function
}
}
""",
expandedSource: """
var computed: String {
get {
/*comment*/"computed"
}
}
""",
macros: ["function": FunctionMacro.self],
indentationWidth: indentationWidth
)
}
func testPoundMultilineFunction() {
assertMacroExpansion(
"""
func f(a: Int, _: Double, c: Int) {
print(#function)
}
""",
expandedSource: """
func f(a: Int, _: Double, c: Int) {
print({
"f(a:_:c:)"
})
}
""",
macros: ["function": MultilineFunctionMacro.self],
indentationWidth: indentationWidth
)
assertMacroExpansion(
"""
struct X {
init(from: String) {
#function
}
subscript(a: Int) -> String {
#function
}
subscript(a a: Int) -> String {
#function
}
}
""",
expandedSource: """
struct X {
init(from: String) {
{
"init(from:)"
}
}
subscript(a: Int) -> String {
{
"subscript(_:)"
}
}
subscript(a a: Int) -> String {
{
"subscript(a:)"
}
}
}
""",
macros: ["function": MultilineFunctionMacro.self],
indentationWidth: indentationWidth
)
assertMacroExpansion(
"""
var computed: String {
get {
#function
}
}
""",
expandedSource: """
var computed: String {
get {
{
"computed"
}
}
}
""",
macros: ["function": MultilineFunctionMacro.self],
indentationWidth: indentationWidth
)
assertMacroExpansion(
"""
extension A {
static var staticProp: String = #function
}
""",
expandedSource: """
extension A {
static var staticProp: String = {
"staticProp"
}
}
""",
macros: ["function": MultilineFunctionMacro.self],
indentationWidth: indentationWidth
)
assertMacroExpansion(
"""
func f(a: Int, _: Double, c: Int) {
print(/*comment*/#function)
}
""",
expandedSource: """
func f(a: Int, _: Double, c: Int) {
print(/*comment*/{
"f(a:_:c:)"
})
}
""",
macros: ["function": MultilineFunctionMacro.self],
indentationWidth: indentationWidth
)
assertMacroExpansion(
"""
var computed: String {
get {
/*comment*/#function // another comment
}
}
""",
expandedSource: """
var computed: String {
get {
/*comment*/{
"computed"
} // another comment
}
}
""",
macros: ["function": MultilineFunctionMacro.self],
indentationWidth: indentationWidth
)
}
func testAllLexicalContexts() {
assertMacroExpansion(
"""
extension A {
struct B {
func f(a: Int, b: Int) {
class C {
@A subscript(i: Int) -> String {
func g() {
#allLexicalContexts
}
}
}
}
}
}
""",
expandedSource: """
extension A {
struct B {
func f(a: Int, b: Int) {
class C {
@A subscript(i: Int) -> String {
func g() {
func g()
@A subscript(i: Int) -> String
class C {
}
func f(a: Int, b: Int)
struct B {
}
extension A {
}
}
}
}
}
}
}
""",
macros: ["allLexicalContexts": AllLexicalContextsMacro.self]
)
// Test closures separately, because they don't fit as declaration macros.
let closure: ExprSyntax = "{ (a, b) in print(a + b) }"
XCTAssertEqual(closure.asMacroLexicalContext()!.description, "{ (a, b) in }")
// Test freestanding macros separately, because since the context contains
// the full body of the macro, including each decl from the context as a new
// decl in the expansion results in a cycle. So we instead use a macro that
// generates a description of the lexical context.
assertMacroExpansion(
"""
#M(a: 1, b: 2) { c in
struct S {
let arg: C
var contextDescription: String {
#lexicalContextDescription
}
}
return S(arg: c)
}
""",
expandedSource: #"""
#M(a: 1, b: 2) { c in
struct S {
let arg: C
var contextDescription: String {
"""
contextDescription: String
struct S {}
{ c in
}
#M(a: 1, b: 2) { c in
struct S {
let arg: C
var contextDescription: String {
#lexicalContextDescription
}
}
return S(arg: c)
}
"""
}
}
return S(arg: c)
}
"""#,
macros: ["lexicalContextDescription": LexicalContextDescriptionMacro.self]
)
}
}
|