You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation for the @attached macro attribute states the following:
The peer, member, and accessor macro roles require a names: argument, listing the names of the symbols that the macro generates.
But in reality, accessor macros do not require the names: argument as they simply generate accessors for the stored property they're attached to. (See discussion on the Swift forums)
Correction
The sentence should be changed to:
The peer and member macro roles require a names: argument, listing the names of the symbols that the macro generates.