I'm using a library that makes heavy use of macros and applyDynamic. The compiler bug that prevents using varargs with applyDynamic has been causing me a lot of pain, and I'm hoping to find a workaround that allows me to pass a dynamic sequence of arguments into an applyDynamic
that then invokes a macro.
I have tried to write a macro that expands the sequence or splat before invoking applyDynamic
with little success, but I'm not very comfortable with Scala macros so I might have been doing something wrong.