This repository was archived by the owner on Jun 5, 2023. It is now read-only.

Description
Currently, it's possible for blackbox Scala 2 macros to access compiler settings via -Xmacro-settings:hello-world
def impl(c: Context): c.Tree =
c.settings // List("hello-world")
I wasn't able to find the equivalent functionality while writing a Scala 3 macro. This feature would be helpful to make the behavior of a macro configurable per-project.