Search code examples
c#macrosboo

Is it possible for a c# class to consume a boo macro.ast attribute?


Is it possible to decorate a c# class with an ast attribute or call a macro and interact with the Boo compiler?


Solution

  • Unfortunately, no. However the Roslyn project will give you similar functionality, not necessarily for full powered boo Syntactic Macros. But it would probably be possible to do attribute macros with some effort at least.

    C# has a long way to go to catch up to Boo still!