I'm using macros annotation for generating code. I would like to change its behaviour based on additional string parameters. So it would produce different results for same code. I closely followed the guide for macro annotations that covers only the simplest use.
@myMacros
class MyClass {
}
That is how I'm using macroses now. And what I'd like to achieve:
@myMacros(name : String)
class MyClass {
}