Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Global constant strings generated by nested macros cannot be written to binary files. #79235

Open
Asura19 opened this issue Feb 8, 2025 · 0 comments
Labels
bug A deviation from expected or documented behavior. Also: expected but undesirable behavior. triage needed This issue needs more specific labels

Comments

@Asura19
Copy link

Asura19 commented Feb 8, 2025

Description

I use macro to create global constant string, it success.
But, when I use a nested macro to wrap #flat macro, it build success and expand as expected in XCode, but the constant string did not appears in mach-o file. (I used XMachOViewer to check executable binary file)

Image Image

Reproduction

Attached is a reduced package that reproduces the behavior:
Test.zip

public struct FlatMacro: DeclarationMacro {
    
    public static func expansion(
        of node: some SwiftSyntax.FreestandingMacroExpansionSyntax,
        in context: some SwiftSyntaxMacros.MacroExpansionContext
    ) throws -> [DeclSyntax] {
        let argumentList = node.arguments
        var name: String = ""
        
        for argument in argumentList {
            switch argument.label?.text {
            case "name":
                if let stringLiteral = argument.expression.as(StringLiteralExprSyntax.self),
                   let hostValue = stringLiteral.segments.first?.as(StringSegmentSyntax.self)?.content.text {
                    name = hostValue
                }
            default:
                break
            }
        }
        
        let varName = "\(context.makeUniqueName("flat"))"
        let declarationString = """
            let \(varName) = "~~~~\(name)"
            """
        return [DeclSyntax(stringLiteral: declarationString)]
    }
}

public struct NestedMacro: DeclarationMacro {
    
    public static func expansion(
        of node: some SwiftSyntax.FreestandingMacroExpansionSyntax,
        in context: some SwiftSyntaxMacros.MacroExpansionContext
    ) throws -> [DeclSyntax] {
        return [
          """
          #flat(name: "456")
          """
        ]
    }
}

Expected behavior

The global constant "~~~~456" will be compiled to the mach-o binary file.

Environment

swift 6.0

Additional information

No response

@Asura19 Asura19 added bug A deviation from expected or documented behavior. Also: expected but undesirable behavior. triage needed This issue needs more specific labels labels Feb 8, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug A deviation from expected or documented behavior. Also: expected but undesirable behavior. triage needed This issue needs more specific labels
Projects
None yet
Development

No branches or pull requests

1 participant