Avatar
SwiftPMのマクロサポートのピッチでました https://forums.swift.org/t/pitch-package-manager-support-for-custom-macros/63482
Introduction Macros provide a way to extend Swift by performing arbitary syntactic transformations on input source code to produce new code. One example for this are expression macros which were previously proposed in SE-0382. This proposal covers how custom macros are defined, built and distributed as part of a Swift package. Motivation SE-03...