Open
Description
Description
When unit testing macro expansions using SwiftSyntaxMacroExpansion, there's no way for it to expand fully qualified attached macro
Steps to Reproduce
Try to write a unit test that expands a fully qualified attached macro:
@MyModule.MyMacro var hello = "world"
Neither of the following in the dictionary works with the SyntaxProtocol.expand
function
[
"MyMacro": MyMacro.self,
"MyModule.MyMacro": MyMacro.self,
]